home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / unixansi.mak < prev    next >
Text File  |  1997-08-09  |  199KB  |  5,666 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # Makefile fragment containing the current revision identification.
  16.  
  17. # Define the name of this makefile.
  18. VERSION_MAK=version.mak
  19.  
  20. # Major and minor version numbers.
  21. # MINOR0 is different from MINOR only if MINOR is a single digit.
  22. GS_VERSION_MAJOR=5
  23. GS_VERSION_MINOR=03
  24. GS_VERSION_MINOR0=03
  25. # Revision date: year x 10000 + month x 100 + day.
  26. GS_REVISIONDATE=19970808
  27.  
  28. # Derived values
  29. GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
  30. GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR)
  31. GS_REVISION=$(GS_VERSION)
  32. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  33. # This file is part of Aladdin Ghostscript.
  34. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  35. # or distributor accepts any responsibility for the consequences of using it,
  36. # or for whether it serves any particular purpose or works at all, unless he
  37. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  38. # License (the "License") for full details.
  39. # Every copy of Aladdin Ghostscript must include a copy of the License,
  40. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  41. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  42. # under certain conditions described in the License.  Among other things, the
  43. # License requires that the copyright notice and this notice be preserved on
  44. # all copies.
  45.  
  46. # makefile for Unix/ANSI C/X11 configuration.
  47.  
  48. #****************************************************************#
  49. #   If you want to change options, DO NOT edit unix-ansi.mak     #
  50. #   or makefile.  Edit ansihead.mak and run the tar_cat script.  #
  51. #****************************************************************#
  52.  
  53. # ------------------------------- Options ------------------------------- #
  54.  
  55. ####### The following are the only parts of the file you should need to edit.
  56.  
  57. # ------ Generic options ------ #
  58.  
  59. # Define the installation commands and target directories for
  60. # executables and files.  The commands are only relevant to `make install';
  61. # the directories also define the default search path for the
  62. # initialization files (gs_*.ps) and the fonts.
  63.  
  64. INSTALL = install -c
  65. INSTALL_PROGRAM = $(INSTALL) -m 755
  66. INSTALL_DATA = $(INSTALL) -m 644
  67.  
  68. prefix = /usr/local
  69. exec_prefix = $(prefix)
  70. bindir = $(exec_prefix)/bin
  71. scriptdir = $(bindir)
  72. mandir = $(prefix)/man
  73. man1ext = 1
  74. man1dir = $(mandir)/man$(man1ext)
  75. datadir = $(prefix)/share
  76. gsdir = $(datadir)/ghostscript
  77. gsdatadir = $(gsdir)/$(GS_DOT_VERSION)
  78.  
  79. docdir=$(gsdatadir)/doc
  80. exdir=$(gsdatadir)/examples
  81. GS_DOCDIR=$(docdir)
  82.  
  83. # Define the default directory/ies for the runtime initialization and
  84. # font files.  Separate multiple directories with a :.
  85.  
  86. GS_LIB_DEFAULT=$(gsdatadir):$(gsdir)/fonts
  87.  
  88. # Define whether or not searching for initialization files should always
  89. # look in the current directory first.  This leads to well-known security
  90. # and confusion problems, but users insist on it.
  91. # NOTE: this also affects searching for files named on the command line:
  92. # see the "File searching" section of use.txt for full details.
  93. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  94.  
  95. SEARCH_HERE_FIRST=1
  96.  
  97. # Define the name of the interpreter initialization file.
  98. # (There is no reason to change this.)
  99.  
  100. GS_INIT=gs_init.ps
  101.  
  102. # Choose generic configuration options.
  103.  
  104. # -DDEBUG
  105. #    includes debugging features (-Z switch) in the code.
  106. #      Code runs substantially slower even if no debugging switches
  107. #      are set.
  108. # -DNOPRIVATE
  109. #    makes private (static) procedures and variables public,
  110. #      so they are visible to the debugger and profiler.
  111. #      No execution time or space penalty.
  112.  
  113. GENOPT=
  114.  
  115. # Define the name of the executable file.
  116.  
  117. GS=gs
  118.  
  119. # Define the directory where the IJG JPEG library sources are stored,
  120. # and the major version of the library that is stored there.
  121. # You may need to change this if the IJG library version changes.
  122. # See jpeg.mak for more information.
  123.  
  124. JSRCDIR=jpeg-6a
  125. JVERSION=6
  126.  
  127. # Define the directory where the PNG library sources are stored,
  128. # and the version of the library that is stored there.
  129. # You may need to change this if the libpng version changes.
  130. # See libpng.mak for more information.
  131.  
  132. PSRCDIR=libpng
  133. PVERSION=96
  134.  
  135. # Choose whether to use a shared version of the PNG library, and if so,
  136. # what its name is.
  137. # See gs.mak and make.txt for more information.
  138.  
  139. SHARE_LIBPNG=0
  140. LIBPNG_NAME=png
  141.  
  142. # Define the directory where the zlib sources are stored.
  143. # See zlib.mak for more information.
  144.  
  145. ZSRCDIR=zlib
  146.  
  147. # Choose whether to use a shared version of the zlib library, and if so,
  148. # what its name is (usually libz, but sometimes libgz).
  149. # See gs.mak and make.txt for more information.
  150.  
  151. SHARE_ZLIB=0
  152. #ZLIB_NAME=gz
  153. ZLIB_NAME=z
  154.  
  155. # Define how to build the library archives.  (These are not used in any
  156. # standard configuration.)
  157.  
  158. AR=ar
  159. ARFLAGS=qc
  160. RANLIB=ranlib
  161.  
  162. # Define the configuration ID.  Read gs.mak carefully before changing this.
  163.  
  164. CONFIG=
  165.  
  166. # ------ Platform-specific options ------ #
  167.  
  168. # Define the name of the C compiler.  If the standard compiler for your
  169. # platform is ANSI-compatible, leave this line commented out; if not,
  170. # uncomment the line and insert the proper definition.
  171.  
  172. #CC=some_C_compiler
  173.  
  174. # Define the name of the linker for the final link step.
  175. # Normally this is the same as the C compiler.
  176.  
  177. CCLD=$(CC)
  178.  
  179. # Define the other compilation flags.  Add at most one of the following:
  180. #    -Aa -w -D_HPUX_SOURCE for the HP 400.
  181. #    -DBSD4_2 for 4.2bsd systems.
  182. #    -DSYSV for System V or DG/UX.
  183. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  184. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  185. # XCFLAGS can be set from the command line.
  186. XCFLAGS=
  187.  
  188. CFLAGS=-O $(XCFLAGS)
  189.  
  190. # Define platform flags for ld.
  191. # SunOS and some others want -X; Ultrix wants -x.
  192. # SunOS 4.n may need -Bstatic.
  193. # Apollos running DomainOS don't support -X (and -x has no effect).
  194. # XLDFLAGS can be set from the command line.
  195. XLDFLAGS=
  196.  
  197. LDFLAGS=$(XLDFLAGS)
  198.  
  199. # Define any extra libraries to link into the executable.
  200. # ISC Unix 2.2 wants -linet.
  201. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  202. # SVR4 may need -lnsl.
  203. # (Libraries required by individual drivers are handled automatically.)
  204.  
  205. EXTRALIBS=
  206.  
  207. # Define the include switch(es) for the X11 header files.
  208. # This can be null if handled in some other way (e.g., the files are
  209. # in /usr/include, or the directory is supplied by an environment variable);
  210. # in particular, SCO Xenix, Unix, and ODT just want
  211. #XINCLUDE=
  212. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  213. # not in $(XINCLUDE).
  214.  
  215. XINCLUDE=-I/usr/local/X/include
  216.  
  217. # Define the directory/ies and library names for the X11 library files.
  218. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  219. # (dynamic libraries on SVR4) and should not include -L.
  220. # Both can be null if these files are in the default linker search path;
  221. # in particular, SCO Xenix, Unix, and ODT just want
  222. #XLIBDIRS=
  223. # Solaris and other SVR4 systems with dynamic linking probably want
  224. #XLIBDIRS=-L/usr/openwin/lib
  225. #XLIBDIR=/usr/openwin/lib
  226. # X11R6 (on any platform) may need
  227. #XLIBS=Xt SM ICE Xext X11
  228.  
  229. XLIBDIRS=-L/usr/local/X/lib
  230. XLIBDIR=
  231. XLIBS=Xt Xext X11
  232.  
  233. # Define whether this platform has floating point hardware:
  234. #    FPU_TYPE=2 means floating point is faster than fixed point.
  235. # (This is the case on some RISCs with multiple instruction dispatch.)
  236. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  237. # than fixed point.
  238. #    FPU_TYPE=0 means that floating point may be considerably slower.
  239. #    FPU_TYPE=-1 means that floating point is always much slower than
  240. # fixed point.
  241.  
  242. FPU_TYPE=1
  243.  
  244. # ------ Devices and features ------ #
  245.  
  246. # Choose the language feature(s) to include.  See gs.mak for details.
  247.  
  248. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  249.  
  250. # Choose whether to compile the .ps initialization files into the executable.
  251. # See gs.mak for details.
  252.  
  253. COMPILE_INITS=0
  254.  
  255. # Choose whether to store band lists on files or in memory.
  256. # The choices are 'file' or 'memory'.
  257.  
  258. BAND_LIST_STORAGE=file
  259.  
  260. # Choose which compression method to use when storing band lists in memory.
  261. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  262. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  263.  
  264. BAND_LIST_COMPRESSOR=zlib
  265.  
  266. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  267. # See gs.mak and sfxfd.c for more details.
  268.  
  269. FILE_IMPLEMENTATION=stdio
  270.  
  271. # Choose the device(s) to include.  See devs.mak for details.
  272.  
  273. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11mono.dev
  274. DEVICE_DEVS1=
  275. DEVICE_DEVS2=
  276. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  277. DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  278. DEVICE_DEVS5=
  279. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  280. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  281. DEVICE_DEVS8=jpeg.dev jpeggray.dev pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev
  282. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  283. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  284. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  285. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  286. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  287. DEVICE_DEVS14=
  288. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  289.  
  290. # ---------------------------- End of options --------------------------- #
  291.  
  292. # Define the name of the partial makefile that specifies options --
  293. # used in dependencies.
  294.  
  295. MAKEFILE=ansihead.mak
  296.  
  297. # Define the ANSI-to-K&R dependency (none for ANSI compilers).
  298.  
  299. AK=
  300.  
  301. # Define the compilation rules and flags.
  302.  
  303. CCC=$(CC) $(CCFLAGS) -c
  304. CCAUX=$(CC)
  305. CCLEAF=$(CCC)
  306.  
  307. # --------------------------- Generic makefile ---------------------------- #
  308.  
  309. # The remainder of the makefile is generic.
  310. # tar_cat concatenates this makefile with the generic makefiles.
  311. #    Copyright (C) 1990, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  312. # This file is part of Aladdin Ghostscript.
  313. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  314. # or distributor accepts any responsibility for the consequences of using it,
  315. # or for whether it serves any particular purpose or works at all, unless he
  316. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  317. # License (the "License") for full details.
  318. # Every copy of Aladdin Ghostscript must include a copy of the License,
  319. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  320. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  321. # under certain conditions described in the License.  Among other things, the
  322. # License requires that the copyright notice and this notice be preserved on
  323. # all copies.
  324.  
  325. # Partial makefile common to all Unix configurations.
  326.  
  327. # This part of the makefile gets inserted after the compiler-specific part
  328. # (xxx-head.mak) and before gs.mak and devs.mak.
  329.  
  330. # ----------------------------- Generic stuff ----------------------------- #
  331.  
  332. # Define the platform name.  For a "stock" System V platform,
  333. # use sysv_ instead of unix_.
  334.  
  335. PLATFORM=unix_
  336.  
  337. # Define the syntax for command, object, and executable files.
  338.  
  339. CMD=
  340. O=-o ./
  341. OBJ=o
  342. XE=
  343. XEAUX=
  344.  
  345. # Define the current directory prefix and command invocations.
  346.  
  347. CAT=cat
  348. D=/
  349. EXPP=
  350. EXP=./
  351. SHELL=/bin/sh
  352. SH=$(SHELL)
  353. SHP=$(SH) $(EXP)
  354.  
  355. # Define generic commands.
  356.  
  357. CP_=cp
  358. RM_=rm -f
  359. RMN_=rm -f
  360.  
  361. # Define the arguments for genconf.
  362.  
  363. CONFILES=-p "%s&s&&" -pl "&-l%s&s&&" -pL "&-L%s&s&&" -ol $(ld_tr)
  364.  
  365. # Define the compilation rules and flags.
  366.  
  367. CCFLAGS=$(GENOPT) $(CFLAGS)
  368.  
  369. .c.o: $(AK)
  370.     $(CCC) $*.c
  371.  
  372. CCCF=$(CCC)
  373. CCD=$(CCC)
  374. CCINT=$(CCC)
  375.  
  376. BEGINFILES=
  377. CCBEGIN=$(CCC) *.c
  378.  
  379. # Patch a couple of PC-specific things that aren't relevant to Unix builds,
  380. # but that cause `make' to produce warnings.
  381.  
  382. BGIDIR=***UNUSED***
  383. PCFBASM=
  384. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  385. # This file is part of Aladdin Ghostscript.
  386. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  387. # or distributor accepts any responsibility for the consequences of using it,
  388. # or for whether it serves any particular purpose or works at all, unless he
  389. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  390. # License (the "License") for full details.
  391. # Every copy of Aladdin Ghostscript must include a copy of the License,
  392. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  393. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  394. # under certain conditions described in the License.  Among other things, the
  395. # License requires that the copyright notice and this notice be preserved on
  396. # all copies.
  397.  
  398. # Generic makefile, common to all platforms.
  399. # The platform-specific makefiles `include' this file.
  400. # They define the following symbols:
  401. #    GS - the name of the executable (without the extension, if any).
  402. #    GS_LIB_DEFAULT - the default directory/ies for searching for the
  403. #        initialization and font files at run time.
  404. #    SEARCH_HERE_FIRST - the default setting of -P (whether or not to
  405. #        look for files in the current directory first).
  406. #    GS_DOCDIR - the directory where documentation will be available
  407. #        at run time.
  408. #    JSRCDIR - the directory where the IJG JPEG library source code
  409. #        is stored (at compilation time).
  410. #    JVERSION - the major version number of the IJG JPEG library.
  411. #    PSRCDIR, PVERSION - the same for libpng.
  412. #    ZSRCDIR - the same for zlib.
  413. #    SHARE_LIBPNG - normally 0; if set to 1, asks the linker to use
  414. #        an existing compiled libpng (-lpng) instead of compiling and
  415. #        linking libpng explicitly.
  416. #    LIBPNG_NAME, the name of the shared libpng, currently always
  417. #        png (libpng, -lpng).
  418. #    SHARE_ZLIB - normally 0; if set to 1, asks the linker to use
  419. #        an existing compiled zlib (-lgz or -lz) instead of compiling
  420. #        and linking libgz/libz explicitly.
  421. #    ZLIB_NAME - the name of the shared zlib, either gz (for libgz, -lgz)
  422. #        or z (for libz, -lz).
  423. #    CONFIG - a configuration ID, added at the request of a customer,
  424. #        that is supposed to help in maintaining multiple variants in
  425. #        a single directory.  Normally this is an empty string;
  426. #        it may be any string that is legal as part of a file name.
  427. #    DEVICE_DEVS - the devices to include in the executable.
  428. #        See devs.mak for details.
  429. #    DEVICE_DEVS1...DEVICE_DEVS15 - additional devices, if the definition
  430. #        of DEVICE_DEVS doesn't fit on one line.  See devs.mak for details.
  431. #    FEATURE_DEVS - what features to include in the executable.
  432. #        Normally this is one of:
  433. #            level1 - a standard PostScript Level 1 language
  434. #            interpreter.
  435. #            level2 - a standard PostScript Level 2 language
  436. #            interpreter.
  437. #            pdf - a PDF-capable interpreter.
  438. #        You may include both level1 and pdf, or both level2 and pdf.
  439. #        The following feature may be added to either of the standard
  440. #        configurations:
  441. #            ccfonts - precompile fonts into C, and link them
  442. #            with the executable.  See fonts.txt for details.
  443. #        The remaining features are of interest primarily to developers
  444. #        who want to "mix and match" features to create custom
  445. #        configurations:
  446. #            dps - (partial) support for Display PostScript extensions:
  447. #            see language.txt for details.
  448. #            btoken - support for binary token encodings.
  449. #            Included automatically in the dps and level2 features.
  450. #            cidfont - (currently partial) support for CID-keyed fonts.
  451. #            color - support for the Level 1 CMYK color extensions.
  452. #            Included automatically in the dps and level2 features.
  453. #            compfont - support for composite (type 0) fonts.
  454. #            Included automatically in the level2 feature.
  455. #            dct - support for DCTEncode/Decode filters.
  456. #            Included automatically in the level2 feature.
  457. #            epsf - support for recognizing and skipping the binary
  458. #            header of MS-DOS EPSF files.
  459. #            filter - support for Level 2 filters (other than eexec,
  460. #            ASCIIHexEncode/Decode, NullEncode, PFBDecode,
  461. #            RunLengthEncode/Decode, and SubFileDecode, which are
  462. #            always included, and DCTEncode/Decode,
  463. #            which are separate).
  464. #            Included automatically in the level2 feature.
  465. #            fzlib - support for zlibEncode/Decode filters.
  466. #            ttfont - support for TrueType fonts.
  467. #            type1 - support for Type 1 fonts and eexec;
  468. #            normally included automatically in all configurations.
  469. #            type42 - support for Type 42 (embedded TrueType) fonts.
  470. #            Included automatically in the level2 feature.
  471. #        There are quite a number of other sub-features that can be
  472. #        selectively included in or excluded from a configuration,
  473. #        but the above are the ones that are most likely to be of
  474. #        interest.
  475. #    COMPILE_INITS - normally 0; if set to 1, compiles the PostScript
  476. #        language initialization files (gs_init.ps et al) into the
  477. #        executable, eliminating the need for these files to be present
  478. #        at run time.
  479. #    BAND_LIST_STORAGE - normally file; if set to memory, stores band
  480. #        lists in memory (with compression if needed).
  481. #    BAND_LIST_COMPRESSOR - normally zlib: selects the compression method
  482. #        to use for band lists in memory.
  483. #    FILE_IMPLEMENTATION - normally stdio; if set to fd, uses file
  484. #        descriptors instead of buffered stdio for file I/O; if set to
  485. #        both, provides both implementations with different procedure
  486. #        names for the fd-based implementation (see sfxfd.c for
  487. #        more information).
  488. #    EXTEND_NAMES - a value N between 0 and 6, indicating that the name
  489. #        table should have a capacity of 2^(16+N) names.  This normally
  490. #        should be set to 0 (or left undefined), since non-zero values
  491. #        result in a larger fixed space overhead and slightly slower code.
  492. #        EXTEND_NAMES is ignored in 16-bit environments.
  493. #
  494. # It is very unlikely that anyone would want to edit the remaining
  495. #   symbols, but we describe them here for completeness:
  496. #    GS_INIT - the name of the initialization file for the interpreter,
  497. #        normally gs_init.ps.
  498. #    PLATFORM - a "device" name for the platform, so that platforms can
  499. #        add various kinds of resources like devices and features.
  500. #    CMD - the suffix for shell command files (e.g., null or .bat).
  501. #        (This is only needed in a few places.)
  502. #    D - the directory separator character (\ for MS-DOS, / for Unix).
  503. #    O - the string for specifying the output file from the C compiler
  504. #        (-o for MS-DOS, -o ./ for Unix).
  505. #    OBJ - the extension for relocatable object files (e.g., o or obj).
  506. #    XE - the extension for executable files (e.g., null or .exe).
  507. #    XEAUX - the extension for the executable files (e.g., null or .exe)
  508. #        for the utility programs (ansi2knr and those compiled with
  509. #        CCAUX).
  510. #    BEGINFILES - the list of files that `make begin' and `make clean'
  511. #        should delete.
  512. #    CCA2K - the C invocation for the ansi2knr program, which is the only
  513. #        one that doesn't use ANSI C syntax.  (It is only needed if
  514. #        the main C compiler also isn't an ANSI compiler.)
  515. #    CCAUX - the C invocation for auxiliary programs (echogs, genarch,
  516. #        genconf, geninit).
  517. #    CCBEGIN - the compilation command for `make begin', normally
  518. #        $(CCC) *.c.
  519. #    CCC - the C invocation for normal compilation.
  520. #    CCD - the C invocation for files that store into frame buffers or
  521. #        device registers.  Needed because some optimizing compilers
  522. #        will eliminate necessary stores.
  523. #    CCCF - the C invocation for compiled fonts and other large,
  524. #        self-contained data modules.  Needed because MS-DOS
  525. #        requires using the 'huge' memory model for these.
  526. #    CCINT - the C invocation for compiling the main interpreter module,
  527. #        normally the same as CCC: this is needed because the
  528. #        Borland compiler generates *worse* code for this module
  529. #        (but only this module) when optimization (-O) is turned on.
  530. #    CCLEAF - the C invocation for compiling modules that contain only
  531. #        leaf procedures, which don't need to build stack frames.
  532. #        This is needed only because many compilers aren't able to
  533. #        recognize leaf procedures on their own.
  534. #    AK - if source files must be converted from ANSI to K&R syntax,
  535. #        this is $(ANSI2KNR_XE); if not, it is null.
  536. #        If a particular platform requires other utility programs
  537. #        to be built, AK must include them too.
  538. #    SHP - the prefix for invoking a shell script in the current directory
  539. #        (null for MS-DOS, $(SH) ./ for Unix).
  540. #    EXPP, EXP - the prefix for invoking an executable program in the
  541. #        current directory (null for MS-DOS, ./ for Unix).
  542. #    SH - the shell for scripts (null on MS-DOS, sh on Unix).
  543. #    CONFILES - the arguments for genconf to generate the appropriate
  544. #        linker control files (various).
  545. #    CP_ - the command for copying one file to another.  Because of
  546. #        limitations in the MS-DOS/MS Windows environment, the
  547. #        second argument must either be '.' (in which case the
  548. #        write date may be either preserved or set to the current
  549. #        date) or a file name (in which case the write date is
  550. #        always updated).
  551. #    RM_ - the command for deleting (a) file(s) (including wild cards,
  552. #        but limited to a single file or pattern).
  553. #    RMN_ = the command for deleting multiple files / patterns.
  554. #
  555. # The platform-specific makefiles must also include rules for creating
  556. # certain dynamically generated files:
  557. #    gconfig_.h - this indicates the presence or absence of
  558. #        certain system header files that are located in different
  559. #        places on different systems.  (It could be generated by
  560. #        the GNU `configure' program.)
  561. #    gconfigv.h - this indicates the status of certain machine-
  562. #        and configuration-specific features derived from definitions
  563. #        in the platform-specific makefile.
  564.  
  565. # Define the name of this makefile.
  566. GS_MAK=gs.mak
  567.  
  568. # Define the names of the executables.
  569. GS_XE=$(GS)$(XE)
  570. ANSI2KNR_XE=ansi2knr$(XEAUX)
  571. ECHOGS_XE=echogs$(XEAUX)
  572. GENARCH_XE=genarch$(XEAUX)
  573. GENCONF_XE=genconf$(XEAUX)
  574. GENINIT_XE=geninit$(XEAUX)
  575.  
  576. # Define the names of the CONFIG-dependent header files.
  577. # gconfig*.h and gconfx*.h are generated dynamically.
  578. gconfig_h=gconfxx$(CONFIG).h
  579. gconfigf_h=gconfxc$(CONFIG).h
  580.  
  581. # Watcom make insists that rules have a non-empty body!
  582. all default: $(GS_XE)
  583.     $(RM_) _temp_*
  584.  
  585. distclean maintainer-clean realclean: clean
  586.     $(RM_) makefile
  587.  
  588. clean: mostlyclean
  589.     $(RM_) arch.h
  590.     $(RM_) $(GS_XE)
  591.  
  592. mostlyclean:
  593.     $(RMN_) *.$(OBJ) *.a core gmon.out
  594.     $(RMN_) *.dev *.d_* devs*.tr gconfig*.h gconfx*.h j*.h o*.tr l*.tr
  595.     $(RMN_) deflate.h zutil.h
  596.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  597.     $(RMN_) _temp_* _temp_*.* *.map *.sym
  598.     $(RMN_) $(ANSI2KNR_XE) $(ECHOGS_XE) $(GENARCH_XE) $(GENCONF_XE) $(GENINIT_XE)
  599.     $(RMN_) gs_init.c $(BEGINFILES)
  600.  
  601. # Remove only configuration-dependent information.
  602. config-clean:
  603.     $(RMN_) *.dev devs*.tr gconfig*.h gconfx*.h o*.tr l*.tr
  604.  
  605. # A rule to do a quick and dirty compilation attempt when first installing
  606. # the interpreter.  Many of the compilations will fail:
  607. # follow this with 'make'.
  608.  
  609. begin:
  610.     $(RMN_) arch.h gconfig*.h gconfx*.h $(GENARCH_XE) $(GS_XE)
  611.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  612.     $(RMN_) gs_init.c $(BEGINFILES)
  613.     make arch.h gconfigv.h
  614.     - $(CCBEGIN)
  615.     $(RMN_) gconfig.$(OBJ) gdev*.$(OBJ) gp_*.$(OBJ) gscdefs.$(OBJ) gsmisc.$(OBJ)
  616.     $(RMN_) icfontab.$(OBJ) iconfig.$(OBJ) iinit.$(OBJ) interp.$(OBJ)
  617.  
  618. # Auxiliary programs
  619.  
  620. arch.h: $(GENARCH_XE)
  621.     $(EXPP) $(EXP)genarch arch.h
  622.  
  623. # Macros for constructing the *.dev files that describe features and
  624. # devices.
  625. SETDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-obj
  626. SETPDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-include -lpage -l-obj
  627. SETMOD=$(EXP)echogs -e .dev -w- -l-obj
  628. ADDMOD=$(EXP)echogs -e .dev -a-
  629.  
  630. # Define the compilation commands for the third-party libraries.
  631. CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR) -DPNG_USE_CONST
  632. CCCJ=$(CCC) -I. -I$(JSRCDIR)
  633. CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  634.  
  635. ######################## How to define new 'features' #######################
  636. #
  637. # One defines new 'features' exactly like devices (see devs.mak for details).
  638. # For example, one would define a feature abc by adding the following to
  639. # gs.mak:
  640. #
  641. #    abc_=abc1.$(OBJ) ...
  642. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_)
  643. #        $(SETMOD) abc $(abc_)
  644. #        $(ADDMOD) abc -obj ... [if needed]
  645. #        $(ADDMOD) abc -oper ... [if appropriate]
  646. #        $(ADDMOD) abc -ps ... [if appropriate]
  647. #
  648. # If the abc feature requires the presence of some other features jkl and
  649. # pqr, then the rules must look like this:
  650. #
  651. #    abc_=abc1.$(OBJ) ...
  652. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) jkl.dev pqr.dev
  653. #        $(SETMOD) abc $(abc_)
  654. #        ...
  655. #        $(ADDMOD) abc -include jkl pqr
  656.  
  657. # --------------------- Configuration-dependent files --------------------- #
  658.  
  659. # gconfig.h shouldn't have to depend on DEVS_ALL, but that would
  660. # involve rewriting gsconfig to only save the device name, not the
  661. # contents of the <device>.dev files.
  662. # FEATURE_DEVS must precede DEVICE_DEVS so that devices can override
  663. # features in obscure cases.
  664.  
  665. DEVS_ALL=$(PLATFORM).dev $(FEATURE_DEVS) \
  666.   $(DEVICE_DEVS) $(DEVICE_DEVS1) \
  667.   $(DEVICE_DEVS2) $(DEVICE_DEVS3) $(DEVICE_DEVS4) $(DEVICE_DEVS5) \
  668.   $(DEVICE_DEVS6) $(DEVICE_DEVS7) $(DEVICE_DEVS8) $(DEVICE_DEVS9) \
  669.   $(DEVICE_DEVS10) $(DEVICE_DEVS11) $(DEVICE_DEVS12) $(DEVICE_DEVS13) \
  670.   $(DEVICE_DEVS14) $(DEVICE_DEVS15)
  671.  
  672. devs_tr=devs.tr$(CONFIG)
  673. $(devs_tr): $(GS_MAK) $(MAKEFILE) $(ECHOGS_XE)
  674.     $(EXP)echogs -w $(devs_tr) - -include $(PLATFORM).dev
  675.     $(EXP)echogs -a $(devs_tr) - $(FEATURE_DEVS)
  676.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS)
  677.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS1)
  678.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS2)
  679.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS3)
  680.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS4)
  681.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS5)
  682.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS6)
  683.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS7)
  684.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS8)
  685.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS9)
  686.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS10)
  687.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS11)
  688.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS12)
  689.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS13)
  690.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS14)
  691.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS15)
  692.  
  693. # GCONFIG_EXTRAS can be set on the command line.
  694. # Note that it consists of arguments for echogs, i.e.,
  695. # it isn't just literal text.
  696. GCONFIG_EXTRAS=
  697.  
  698. ld_tr=ld$(CONFIG).tr
  699. $(gconfig_h) $(ld_tr) lib.tr: \
  700.   $(GS_MAK) $(MAKEFILE) version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) libcore.dev
  701.     $(EXP)genconf $(devs_tr) libcore.dev -h $(gconfig_h) $(CONFILES)
  702.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_LIB_DEFAULT -x 2022 $(GS_LIB_DEFAULT) -x 22
  703.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u SEARCH_HERE_FIRST -s $(SEARCH_HERE_FIRST)
  704.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_DOCDIR -x 2022 $(GS_DOCDIR) -x 22
  705.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_INIT -x 2022 $(GS_INIT) -x 22
  706.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISION -s $(GS_REVISION)
  707.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISIONDATE -s $(GS_REVISIONDATE)
  708.     $(EXP)echogs -a $(gconfig_h) $(GCONFIG_EXTRAS)
  709.  
  710. ################################################################
  711. # The other platform-independent makefiles are concatenated
  712. # (or included) after this one:
  713. #    lib.mak
  714. #    int.mak
  715. #    jpeg.mak
  716. #    libpng.mak
  717. #    zlib.mak
  718. #    devs.mak
  719. ################################################################
  720. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  721. # This file is part of Aladdin Ghostscript.
  722. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  723. # or distributor accepts any responsibility for the consequences of using it,
  724. # or for whether it serves any particular purpose or works at all, unless he
  725. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  726. # License (the "License") for full details.
  727. # Every copy of Aladdin Ghostscript must include a copy of the License,
  728. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  729. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  730. # under certain conditions described in the License.  Among other things, the
  731. # License requires that the copyright notice and this notice be preserved on
  732. # all copies.
  733.  
  734. # (Platform-independent) makefile for graphics library and other support code.
  735. # See the end of gs.mak for where this fits into the build process.
  736.  
  737. # Define the name of this makefile.
  738. LIB_MAK=lib.mak
  739.  
  740. # Define the inter-dependencies of the .h files.
  741. # Since not all versions of `make' defer expansion of macros,
  742. # we must list these in bottom-to-top order.
  743.  
  744. # Generic files
  745.  
  746. arch_h=arch.h
  747. stdpre_h=stdpre.h
  748. std_h=std.h $(arch_h) $(stdpre_h)
  749.  
  750. # Platform interfaces
  751.  
  752. gp_h=gp.h
  753. gpcheck_h=gpcheck.h
  754.  
  755. # Configuration definitions
  756.  
  757. # gconfig*.h are generated dynamically.
  758. gconfig__h=gconfig_.h
  759. gconfigv_h=gconfigv.h
  760. gscdefs_h=gscdefs.h
  761.  
  762. # C library interfaces
  763.  
  764. # Because of variations in the "standard" header files between systems, and
  765. # because we must include std.h before any file that includes sys/types.h,
  766. # we define local include files named *_.h to substitute for <*.h>.
  767.  
  768. vmsmath_h=vmsmath.h
  769.  
  770. dos__h=dos_.h
  771. ctype__h=ctype_.h $(std_h)
  772. dirent__h=dirent_.h $(std_h) $(gconfig__h)
  773. errno__h=errno_.h $(std_h)
  774. malloc__h=malloc_.h $(std_h)
  775. math__h=math_.h $(std_h) $(vmsmath_h)
  776. memory__h=memory_.h $(std_h)
  777. stat__h=stat_.h $(std_h)
  778. stdio__h=stdio_.h $(std_h)
  779. string__h=string_.h $(std_h)
  780. time__h=time_.h $(std_h) $(gconfig__h)
  781. windows__h=windows_.h
  782.  
  783. # Miscellaneous
  784.  
  785. gdebug_h=gdebug.h
  786. gsalloc_h=gsalloc.h
  787. gsargs_h=gsargs.h
  788. gserror_h=gserror.h
  789. gserrors_h=gserrors.h
  790. gsexit_h=gsexit.h
  791. gsgc_h=gsgc.h
  792. gsio_h=gsio.h
  793. gsmdebug_h=gsmdebug.h
  794. gsmemory_h=gsmemory.h
  795. gsrefct_h=gsrefct.h
  796. gsstruct_h=gsstruct.h
  797. gstypes_h=gstypes.h
  798. gx_h=gx.h $(stdio__h) $(gdebug_h) $(gserror_h) $(gsio_h) $(gsmemory_h) $(gstypes_h)
  799.  
  800. GX=$(AK) $(gx_h)
  801. GXERR=$(GX) $(gserrors_h)
  802.  
  803. ###### Support
  804.  
  805. ### Include files
  806.  
  807. gsbitops_h=gsbitops.h
  808. gsbittab_h=gsbittab.h
  809. gsflip_h=gsflip.h
  810. gsuid_h=gsuid.h
  811. gsutil_h=gsutil.h
  812. gxarith_h=gxarith.h
  813. gxbitmap_h=gxbitmap.h $(gstypes_h)
  814. gxfarith_h=gxfarith.h $(gconfigv_h) $(gxarith_h)
  815. gxfixed_h=gxfixed.h
  816. gxobj_h=gxobj.h $(gxbitmap_h)
  817. # Out of order
  818. gxalloc_h=gxalloc.h $(gsalloc_h) $(gxobj_h)
  819.  
  820. ### Executable code
  821.  
  822. gsalloc.$(OBJ): gsalloc.c $(GX) $(memory__h) $(string__h) \
  823.   $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  824.  
  825. gsargs.$(OBJ): gsargs.c $(ctype__h) $(stdio__h) $(string__h)\
  826.  $(gsargs_h) $(gsexit_h) $(gsmemory_h)
  827.  
  828. gsbitops.$(OBJ): gsbitops.c $(AK) $(memory__h) $(stdio__h)\
  829.  $(gdebug_h) $(gsbitops_h) $(gstypes_h)
  830.  
  831. gsbittab.$(OBJ): gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h)
  832.  
  833. # gsfemu is only used in FPU-less configurations, and currently only with gcc.
  834. # We thought using CCLEAF would produce smaller code, but it actually
  835. # produces larger code!
  836. gsfemu.$(OBJ): gsfemu.c $(AK) $(std_h)
  837.  
  838. # gsflip is not part of the standard configuration: it's rather large,
  839. # and no standard facility requires it.
  840. gsflip.$(OBJ): gsflip.c $(GX) $(gsbittab_h) $(gsflip_h)
  841.     $(CCLEAF) gsflip.c
  842.  
  843. gsmemory.$(OBJ): gsmemory.c $(GX) $(malloc__h) $(memory__h) \
  844.   $(gsmdebug_h) $(gsrefct_h) $(gsstruct_h)
  845.  
  846. gsmisc.$(OBJ): gsmisc.c $(GXERR) $(gconfigv_h) \
  847.   $(malloc__h) $(math__h) $(memory__h) $(gpcheck_h) $(gxfarith_h) $(gxfixed_h)
  848.  
  849. # gsnogc currently is only used in library-only configurations.
  850. gsnogc.$(OBJ): gsnogc.c $(GX)\
  851.  $(gsgc_h) $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  852.  
  853. gsutil.$(OBJ): gsutil.c $(AK) $(memory__h) $(string__h) $(gconfigv_h)\
  854.  $(gstypes_h) $(gsuid_h) $(gsutil_h)
  855.  
  856. ###### Low-level facilities and utilities
  857.  
  858. ### Include files
  859.  
  860. gdevbbox_h=gdevbbox.h
  861. gdevmem_h=gdevmem.h $(gsbitops_h)
  862. gdevmrop_h=gdevmrop.h
  863.  
  864. gsccode_h=gsccode.h
  865. gsccolor_h=gsccolor.h $(gsstruct_h)
  866. gscsel_h=gscsel.h
  867. gscolor1_h=gscolor1.h
  868. gscoord_h=gscoord.h
  869. gscpm_h=gscpm.h
  870. gsdevice_h=gsdevice.h
  871. gsfcmap_h=gsfcmap.h $(gsccode_h)
  872. gsfont_h=gsfont.h
  873. gshsb_h=gshsb.h
  874. gsht_h=gsht.h
  875. gsht1_h=gsht1.h $(gsht_h)
  876. gsiparam_h=gsiparam.h
  877. gsjconf_h=gsjconf.h $(std_h)
  878. gslib_h=gslib.h
  879. gslparam_h=gslparam.h
  880. gsmatrix_h=gsmatrix.h
  881. gspaint_h=gspaint.h
  882. gsparam_h=gsparam.h
  883. gspath2_h=gspath2.h
  884. gspenum_h=gspenum.h
  885. gsropt_h=gsropt.h
  886. gsxfont_h=gsxfont.h
  887. # Out of order
  888. gschar_h=gschar.h $(gsccode_h) $(gscpm_h)
  889. gscolor2_h=gscolor2.h $(gsccolor_h) $(gsuid_h) $(gxbitmap_h)
  890. gsimage_h=gsimage.h $(gsiparam_h)
  891. gsline_h=gsline.h $(gslparam_h)
  892. gspath_h=gspath.h $(gspenum_h)
  893. gsrop_h=gsrop.h $(gsropt_h)
  894.  
  895. gxbcache_h=gxbcache.h $(gxbitmap_h)
  896. gxchar_h=gxchar.h $(gschar_h)
  897. gxcindex_h=gxcindex.h
  898. gxcvalue_h=gxcvalue.h
  899. gxclio_h=gxclio.h
  900. gxclip2_h=gxclip2.h
  901. gxcolor2_h=gxcolor2.h $(gscolor2_h) $(gsrefct_h) $(gxbitmap_h)
  902. gxcoord_h=gxcoord.h $(gscoord_h)
  903. gxcpath_h=gxcpath.h
  904. gxdda_h=gxdda.h
  905. gxdevrop_h=gxdevrop.h
  906. gxdevmem_h=gxdevmem.h
  907. gxdither_h=gxdither.h
  908. gxfcmap_h=gxfcmap.h $(gsfcmap_h) $(gsuid_h)
  909. gxfont0_h=gxfont0.h
  910. gxfrac_h=gxfrac.h
  911. gxftype_h=gxftype.h
  912. gxhttile_h=gxhttile.h
  913. gxhttype_h=gxhttype.h
  914. gxiodev_h=gxiodev.h $(stat__h)
  915. gxline_h=gxline.h $(gslparam_h)
  916. gxlum_h=gxlum.h
  917. gxmatrix_h=gxmatrix.h $(gsmatrix_h)
  918. gxpaint_h=gxpaint.h
  919. gxpath_h=gxpath.h $(gscpm_h) $(gslparam_h) $(gspenum_h)
  920. gxpcache_h=gxpcache.h
  921. gxpcolor_h=gxpcolor.h $(gxpcache_h)
  922. gxsample_h=gxsample.h
  923. gxstate_h=gxstate.h
  924. gxtmap_h=gxtmap.h
  925. gxxfont_h=gxxfont.h $(gsccode_h) $(gsmatrix_h) $(gsuid_h) $(gsxfont_h)
  926. # The following are out of order because they include other files.
  927. gsdcolor_h=gsdcolor.h $(gsccolor_h) $(gxarith_h) $(gxbitmap_h) $(gxcindex_h) $(gxhttile_h)
  928. gxdcolor_h=gxdcolor.h $(gscsel_h) $(gsdcolor_h) $(gsropt_h) $(gsstruct_h)
  929. gxdevice_h=gxdevice.h $(gsdcolor_h) $(gsiparam_h) $(gsmatrix_h) \
  930.   $(gsropt_h) $(gsstruct_h) $(gsxfont_h) \
  931.   $(gxbitmap_h) $(gxcindex_h) $(gxcvalue_h) $(gxfixed_h)
  932. gxdht_h=gxdht.h $(gsrefct_h) $(gxarith_h) $(gxhttype_h)
  933. gxctable_h=gxctable.h $(gxfixed_h) $(gxfrac_h)
  934. gxfcache_h=gxfcache.h $(gsuid_h) $(gsxfont_h) $(gxbcache_h) $(gxftype_h)
  935. gxfont_h=gxfont.h $(gsfont_h) $(gsuid_h) $(gsstruct_h) $(gxftype_h)
  936. gscie_h=gscie.h $(gsrefct_h) $(gxctable_h)
  937. gscsepr_h=gscsepr.h
  938. gscspace_h=gscspace.h
  939. gxdcconv_h=gxdcconv.h $(gxfrac_h)
  940. gxfmap_h=gxfmap.h $(gsrefct_h) $(gxfrac_h) $(gxtmap_h)
  941. gxistate_h=gxistate.h $(gscsel_h) $(gsropt_h) $(gxcvalue_h) $(gxfixed_h) $(gxline_h) $(gxmatrix_h) $(gxtmap_h)
  942. gxclist_h=gxclist.h $(gscspace_h) $(gxbcache_h) $(gxclio_h) $(gxistate_h)
  943. gxcmap_h=gxcmap.h $(gscsel_h) $(gxcvalue_h) $(gxfmap_h)
  944. gxcspace_h=gxcspace.h $(gscspace_h) $(gsccolor_h) $(gscsel_h) $(gsstruct_h) $(gxfrac_h)
  945. gxht_h=gxht.h $(gsht1_h) $(gsrefct_h) $(gxhttype_h) $(gxtmap_h)
  946. gscolor_h=gscolor.h $(gxtmap_h)
  947. gsstate_h=gsstate.h $(gscolor_h) $(gscsel_h) $(gsdevice_h) $(gsht_h) $(gsline_h)
  948.  
  949. gzacpath_h=gzacpath.h
  950. gzcpath_h=gzcpath.h $(gxcpath_h)
  951. gzht_h=gzht.h $(gscsel_h) $(gxdht_h) $(gxfmap_h) $(gxht_h) $(gxhttile_h)
  952. gzline_h=gzline.h $(gxline_h)
  953. gzpath_h=gzpath.h $(gsstruct_h) $(gxpath_h)
  954. gzstate_h=gzstate.h $(gscpm_h) $(gsstate_h) $(gxdcolor_h) $(gxistate_h) $(gxstate_h)
  955.  
  956. gdevprn_h=gdevprn.h $(memory__h) $(string__h) $(gx_h) \
  957.   $(gserrors_h) $(gsmatrix_h) $(gsparam_h) $(gsutil_h) \
  958.   $(gxdevice_h) $(gxdevmem_h) $(gxclist_h)
  959.  
  960. sa85x_h=sa85x.h
  961. sbtx_h=sbtx.h
  962. scanchar_h=scanchar.h
  963. scommon_h=scommon.h $(gsmemory_h) $(gstypes_h) $(gsstruct_h)
  964. sdct_h=sdct.h
  965. shc_h=shc.h $(gsbittab_h)
  966. siscale_h=siscale.h $(gconfigv_h)
  967. sjpeg_h=sjpeg.h
  968. slzwx_h=slzwx.h
  969. spcxx_h=spcxx.h
  970. spdiffx_h=spdiffx.h
  971. spngpx_h=spngpx.h
  972. srlx_h=srlx.h
  973. sstring_h=sstring.h
  974. strimpl_h=strimpl.h $(scommon_h) $(gstypes_h) $(gsstruct_h)
  975. szlibx_h=szlibx.h
  976. # Out of order
  977. scf_h=scf.h $(shc_h)
  978. scfx_h=scfx.h $(shc_h)
  979. gximage_h=gximage.h $(gsiparam_h) $(gxcspace_h) $(gxdda_h) $(gxsample_h)\
  980.  $(siscale_h) $(strimpl_h)
  981.  
  982. ### Executable code
  983.  
  984. # gconfig and gscdefs are handled specially.  Currently they go in psbase
  985. # rather than in libcore, which is clearly wrong.
  986. gconfig=gconfig$(CONFIG)
  987. $(gconfig).$(OBJ): gconf.c $(GX) \
  988.   $(gscdefs_h) $(gconfig_h) $(gxdevice_h) $(gxiodev_h) $(MAKEFILE)
  989.     $(RM_) gconfig.h
  990.     $(RM_) $(gconfig).c
  991.     $(CP_) $(gconfig_h) gconfig.h
  992.     $(CP_) gconf.c $(gconfig).c
  993.     $(CCC) $(gconfig).c
  994.     $(RM_) gconfig.h
  995.     $(RM_) $(gconfig).c
  996.  
  997. gscdefs=gscdefs$(CONFIG)
  998. $(gscdefs).$(OBJ): gscdef.c $(stdpre_h) $(gscdefs_h) $(gconfig_h) $(MAKEFILE)
  999.     $(RM_) gconfig.h
  1000.     $(RM_) $(gscdefs).c
  1001.     $(CP_) $(gconfig_h) gconfig.h
  1002.     $(CP_) gscdef.c $(gscdefs).c
  1003.     $(CCC) $(gscdefs).c
  1004.     $(RM_) gconfig.h
  1005.     $(RM_) $(gscdefs).c
  1006.  
  1007. gxacpath.$(OBJ): gxacpath.c $(GXERR) \
  1008.   $(gsdcolor_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1009.   $(gxdevice_h) $(gxfixed_h) $(gxpaint_h) \
  1010.   $(gzacpath_h) $(gzcpath_h) $(gzpath_h)
  1011.  
  1012. gxbcache.$(OBJ): gxbcache.c $(GX) $(memory__h) \
  1013.   $(gsmdebug_h) $(gxbcache_h)
  1014.  
  1015. gxccache.$(OBJ): gxccache.c $(GXERR) $(gpcheck_h) \
  1016.   $(gscspace_h) $(gsimage_h) $(gsstruct_h) \
  1017.   $(gxchar_h) $(gxdevice_h) $(gxdevmem_h) $(gxfcache_h) \
  1018.   $(gxfixed_h) $(gxfont_h) $(gxhttile_h) $(gxmatrix_h) $(gxxfont_h) \
  1019.   $(gzstate_h) $(gzpath_h) $(gzcpath_h) 
  1020.  
  1021. gxccman.$(OBJ): gxccman.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1022.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h) $(gxfixed_h) $(gxmatrix_h)\
  1023.  $(gxdevice_h) $(gxdevmem_h) $(gxfont_h) $(gxfcache_h) $(gxchar_h)\
  1024.  $(gxxfont_h) $(gzstate_h) $(gzpath_h)
  1025.  
  1026. gxcht.$(OBJ): gxcht.c $(GXERR) $(memory__h)\
  1027.  $(gsutil_h)\
  1028.  $(gxcmap_h) $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h)\
  1029.  $(gxmatrix_h) $(gzht_h)
  1030.  
  1031. gxcmap.$(OBJ): gxcmap.c $(GXERR) \
  1032.   $(gsccolor_h) \
  1033.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gxdither_h) \
  1034.   $(gxfarith_h) $(gxfrac_h) $(gxlum_h) $(gzstate_h)
  1035.  
  1036. gxcpath.$(OBJ): gxcpath.c $(GXERR)\
  1037.  $(gscoord_h) $(gsstruct_h) $(gsutil_h)\
  1038.  $(gxdevice_h) $(gxfixed_h) $(gzpath_h) $(gzcpath_h)
  1039.  
  1040. gxdcconv.$(OBJ): gxdcconv.c $(GX) \
  1041.   $(gsdcolor_h) $(gxcmap_h) $(gxdcconv_h) $(gxdevice_h) \
  1042.   $(gxfarith_h) $(gxistate_h) $(gxlum_h)
  1043.  
  1044. gxdcolor.$(OBJ): gxdcolor.c $(GX) \
  1045.   $(gsbittab_h) $(gxdcolor_h) $(gxdevice_h)
  1046.  
  1047. gxdither.$(OBJ): gxdither.c $(GX) \
  1048.   $(gsstruct_h) $(gsdcolor_h) \
  1049.   $(gxcmap_h) $(gxdevice_h) $(gxdither_h) $(gxlum_h) $(gzht_h)
  1050.  
  1051. gxfill.$(OBJ): gxfill.c $(GXERR) $(math__h) \
  1052.   $(gsstruct_h) \
  1053.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxhttile_h) \
  1054.   $(gxistate_h) $(gxpaint_h) \
  1055.   $(gzcpath_h) $(gzpath_h)
  1056.  
  1057. gxht.$(OBJ): gxht.c $(GXERR) $(memory__h)\
  1058.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h)\
  1059.  $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gzht_h)
  1060.  
  1061. gximage.$(OBJ): gximage.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1062.  $(gsccolor_h) $(gspaint_h) $(gsstruct_h)\
  1063.  $(gxfixed_h) $(gxfrac_h) $(gxarith_h) $(gxmatrix_h)\
  1064.  $(gxdevice_h) $(gzpath_h) $(gzstate_h)\
  1065.  $(gzcpath_h) $(gxdevmem_h) $(gximage_h) $(gdevmrop_h)
  1066.  
  1067. gximage0.$(OBJ): gximage0.c $(GXERR) $(memory__h)\
  1068.  $(gxcpath_h) $(gxdevice_h) $(gximage_h)
  1069.  
  1070. gximage1.$(OBJ): gximage1.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1071.  $(gdevmem_h) $(gsbittab_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1072.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1073.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1074.  $(gzht_h) $(gzpath_h)
  1075.  
  1076. gximage2.$(OBJ): gximage2.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1077.  $(gdevmem_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1078.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1079.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1080.  $(gzht_h) $(gzpath_h)
  1081.  
  1082. gxpaint.$(OBJ): gxpaint.c $(GX) \
  1083.   $(gxdevice_h) $(gxhttile_h) $(gxpaint_h) $(gxpath_h) $(gzstate_h)
  1084.  
  1085. gxpath.$(OBJ): gxpath.c $(GXERR) \
  1086.   $(gsstruct_h) $(gxfixed_h) $(gzpath_h)
  1087.  
  1088. gxpath2.$(OBJ): gxpath2.c $(GXERR) $(math__h) \
  1089.   $(gxfixed_h) $(gxarith_h) $(gzpath_h)
  1090.  
  1091. gxpcopy.$(OBJ): gxpcopy.c $(GXERR) $(math__h) $(gconfigv_h) \
  1092.   $(gxfarith_h) $(gxfixed_h) $(gzpath_h)
  1093.  
  1094. gxpdash.$(OBJ): gxpdash.c $(GX) $(math__h) \
  1095.   $(gscoord_h) $(gsline_h) $(gsmatrix_h) \
  1096.   $(gxfixed_h) $(gzline_h) $(gzpath_h)
  1097.  
  1098. gxpflat.$(OBJ): gxpflat.c $(GX)\
  1099.  $(gxarith_h) $(gxfixed_h) $(gzpath_h)
  1100.  
  1101. gxsample.$(OBJ): gxsample.c $(GX)\
  1102.  $(gxsample_h)
  1103.  
  1104. gxstroke.$(OBJ): gxstroke.c $(GXERR) $(math__h) $(gpcheck_h) \
  1105.   $(gscoord_h) $(gsdcolor_h) $(gsdevice_h) \
  1106.   $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) \
  1107.   $(gxhttile_h) $(gxistate_h) $(gxmatrix_h) $(gxpaint_h) \
  1108.   $(gzcpath_h) $(gzline_h) $(gzpath_h)
  1109.  
  1110. ###### Higher-level facilities
  1111.  
  1112. gschar.$(OBJ): gschar.c $(GXERR) $(memory__h) $(string__h)\
  1113.  $(gspath_h) $(gsstruct_h) \
  1114.  $(gxfixed_h) $(gxarith_h) $(gxmatrix_h) $(gxcoord_h) $(gxdevice_h) $(gxdevmem_h) \
  1115.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxfcache_h) $(gzpath_h) $(gzstate_h)
  1116.  
  1117. gscolor.$(OBJ): gscolor.c $(GXERR) \
  1118.   $(gsccolor_h) $(gsstruct_h) $(gsutil_h) \
  1119.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gzstate_h)
  1120.  
  1121. gscoord.$(OBJ): gscoord.c $(GXERR) $(math__h) \
  1122.   $(gsccode_h) $(gxcoord_h) $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) $(gxfont_h) \
  1123.   $(gxmatrix_h) $(gxpath_h) $(gzstate_h)
  1124.  
  1125. gsdevice.$(OBJ): gsdevice.c $(GXERR) $(ctype__h) $(memory__h) $(string__h) $(gp_h)\
  1126.  $(gscdefs_h) $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstruct_h)\
  1127.  $(gxcmap_h) $(gxdevice_h) $(gxdevmem_h) $(gzstate_h)
  1128.  
  1129. gsdevmem.$(OBJ): gsdevmem.c $(GXERR) $(math__h) $(memory__h) \
  1130.   $(gxarith_h) $(gxdevice_h) $(gxdevmem_h)
  1131.  
  1132. gsdparam.$(OBJ): gsdparam.c $(GXERR) $(memory__h) $(string__h) \
  1133.   $(gsparam_h) $(gxdevice_h) $(gxfixed_h)
  1134.  
  1135. gsfont.$(OBJ): gsfont.c $(GXERR) $(memory__h)\
  1136.  $(gschar_h) $(gsstruct_h) \
  1137.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxfont_h) $(gxfcache_h)\
  1138.  $(gzstate_h)
  1139.  
  1140. gsht.$(OBJ): gsht.c $(GXERR) $(memory__h)\
  1141.  $(gsstruct_h) $(gsutil_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1142.  
  1143. gshtscr.$(OBJ): gshtscr.c $(GXERR) $(math__h) \
  1144.   $(gsstruct_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1145.  
  1146. gsimage.$(OBJ): gsimage.c $(GXERR) $(memory__h)\
  1147.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  1148.   $(gxarith_h) $(gxdevice_h) $(gzstate_h)
  1149.  
  1150. gsimpath.$(OBJ): gsimpath.c $(GXERR) \
  1151.   $(gsmatrix_h) $(gsstate_h) $(gspath_h)
  1152.  
  1153. gsinit.$(OBJ): gsinit.c $(memory__h) $(stdio__h) \
  1154.   $(gdebug_h) $(gp_h) $(gscdefs_h) $(gslib_h) $(gsmemory_h)
  1155.  
  1156. gsiodev.$(OBJ): gsiodev.c $(GXERR) $(errno__h) $(string__h) \
  1157.   $(gp_h) $(gsparam_h) $(gxiodev_h)
  1158.  
  1159. gsline.$(OBJ): gsline.c $(GXERR) $(math__h) $(memory__h)\
  1160.  $(gsline_h) $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gzline_h)
  1161.  
  1162. gsmatrix.$(OBJ): gsmatrix.c $(GXERR) $(math__h) \
  1163.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h)
  1164.  
  1165. gspaint.$(OBJ): gspaint.c $(GXERR) $(math__h) $(gpcheck_h)\
  1166.  $(gspaint_h) $(gspath_h) $(gsropt_h)\
  1167.  $(gxcpath_h) $(gxdevmem_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxpaint_h)\
  1168.  $(gzpath_h) $(gzstate_h)
  1169.  
  1170. gsparam.$(OBJ): gsparam.c $(GXERR) $(memory__h) $(string__h)\
  1171.  $(gsparam_h) $(gsstruct_h)
  1172.  
  1173. gspath.$(OBJ): gspath.c $(GXERR) \
  1174.   $(gscoord_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  1175.   $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1176.  
  1177. gsstate.$(OBJ): gsstate.c $(GXERR) $(memory__h)\
  1178.  $(gscie_h) $(gscolor2_h) $(gscoord_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1179.  $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxpcache_h) \
  1180.  $(gzstate_h) $(gzht_h) $(gzline_h) $(gzpath_h) $(gzcpath_h)
  1181.  
  1182. ###### The internal devices
  1183.  
  1184. ### The built-in device implementations:
  1185.  
  1186. # The bounding box device is not normally a free-standing device.
  1187. # To configure it as one for testing, change SETMOD to SETDEV, and also
  1188. # define TEST in gdevbbox.c.
  1189. bbox.dev: $(LIB_MAK) $(ECHOGS_XE) gdevbbox.$(OBJ)
  1190.     $(SETMOD) bbox gdevbbox.$(OBJ)
  1191.  
  1192. gdevbbox.$(OBJ): gdevbbox.c $(GXERR) $(math__h) $(memory__h) \
  1193.   $(gdevbbox_h) $(gsdevice_h) $(gsparam_h) \
  1194.   $(gxcpath_h) $(gxdevice_h) $(gxistate_h) $(gxpaint_h) $(gxpath_h)
  1195.  
  1196. gdevddrw.$(OBJ): gdevddrw.c $(GXERR) $(math__h) $(gpcheck_h) \
  1197.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h)
  1198.  
  1199. gdevdflt.$(OBJ): gdevdflt.c $(GXERR) $(gpcheck_h)\
  1200.  $(gsbittab_h) $(gsropt_h)\
  1201.  $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)
  1202.  
  1203. gdevnfwd.$(OBJ): gdevnfwd.c $(GX) \
  1204.   $(gxdevice_h)
  1205.  
  1206. # The render/RGB device is only here as an example, but we can configure
  1207. # it as a real device for testing.
  1208. rrgb.dev: $(LIB_MAK) $(ECHOGS_XE) gdevrrgb.$(OBJ) page.dev
  1209.     $(SETPDEV) rrgb gdevrrgb.$(OBJ)
  1210.  
  1211. gdevrrgb.$(OBJ): gdevrrgb.c $(AK)\
  1212.  $(gdevprn_h)
  1213.  
  1214. ### The memory devices:
  1215.  
  1216. gdevabuf.$(OBJ): gdevabuf.c $(GXERR) $(memory__h)\
  1217.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1218.  
  1219. gdevmem.$(OBJ): gdevmem.c $(GXERR) $(memory__h)\
  1220.  $(gsstruct_h) $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1221.  
  1222. gdevm1.$(OBJ): gdevm1.c $(GX) $(memory__h) $(gsrop_h)\
  1223.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1224.  
  1225. gdevm2.$(OBJ): gdevm2.c $(GX) $(memory__h)\
  1226.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1227.  
  1228. gdevm4.$(OBJ): gdevm4.c $(GX) $(memory__h)\
  1229.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1230.  
  1231. gdevm8.$(OBJ): gdevm8.c $(GX) $(memory__h)\
  1232.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1233.  
  1234. gdevm16.$(OBJ): gdevm16.c $(GX) $(memory__h)\
  1235.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1236.  
  1237. gdevm24.$(OBJ): gdevm24.c $(GX) $(memory__h)\
  1238.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1239.  
  1240. gdevm32.$(OBJ): gdevm32.c $(GX) $(memory__h)\
  1241.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1242.  
  1243. gdevmpla.$(OBJ): gdevmpla.c $(GX) $(memory__h)\
  1244.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1245.  
  1246. # Create a pseudo-"feature" for the entire graphics library.
  1247.  
  1248. LIB1s=gsalloc.$(OBJ) gsbitops.$(OBJ) gsbittab.$(OBJ)
  1249. LIB2s=gschar.$(OBJ) gscolor.$(OBJ) gscoord.$(OBJ) gsdevice.$(OBJ) gsdevmem.$(OBJ)
  1250. LIB3s=gsdparam.$(OBJ) gsfont.$(OBJ) gsht.$(OBJ) gshtscr.$(OBJ)
  1251. LIB4s=gsimage.$(OBJ) gsimpath.$(OBJ) gsinit.$(OBJ) gsiodev.$(OBJ)
  1252. LIB5s=gsline.$(OBJ) gsmatrix.$(OBJ) gsmemory.$(OBJ) gsmisc.$(OBJ)
  1253. LIB6s=gspaint.$(OBJ) gsparam.$(OBJ) gspath.$(OBJ) gsstate.$(OBJ) gsutil.$(OBJ)
  1254. LIB1x=gxacpath.$(OBJ) gxbcache.$(OBJ)
  1255. LIB2x=gxccache.$(OBJ) gxccman.$(OBJ) gxcht.$(OBJ) gxcmap.$(OBJ) gxcpath.$(OBJ)
  1256. LIB3x=gxdcconv.$(OBJ) gxdcolor.$(OBJ) gxdither.$(OBJ) gxfill.$(OBJ) gxht.$(OBJ)
  1257. LIB4x=gximage.$(OBJ) gximage0.$(OBJ) gximage1.$(OBJ) gximage2.$(OBJ)
  1258. LIB5x=gxpaint.$(OBJ) gxpath.$(OBJ) gxpath2.$(OBJ) gxpcopy.$(OBJ)
  1259. LIB6x=gxpdash.$(OBJ) gxpflat.$(OBJ) gxsample.$(OBJ) gxstroke.$(OBJ)
  1260. LIB1d=gdevabuf.$(OBJ) gdevddrw.$(OBJ) gdevdflt.$(OBJ) gdevnfwd.$(OBJ)
  1261. LIB2d=gdevmem.$(OBJ) gdevm1.$(OBJ) gdevm2.$(OBJ) gdevm4.$(OBJ) gdevm8.$(OBJ)
  1262. LIB3d=gdevm16.$(OBJ) gdevm24.$(OBJ) gdevm32.$(OBJ) gdevmpla.$(OBJ)
  1263. LIBs=$(LIB1s) $(LIB2s) $(LIB3s) $(LIB4s) $(LIB5s) $(LIB6s)
  1264. LIBx=$(LIB1x) $(LIB2x) $(LIB3x) $(LIB4x) $(LIB5x) $(LIB6x)
  1265. LIBd=$(LIB1d) $(LIB2d) $(LIB3d)
  1266. LIB_ALL=$(LIBs) $(LIBx) $(LIBd)
  1267. libs.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBs)
  1268.     $(EXP)echogs -w libs.dev $(LIB1s)
  1269.     $(EXP)echogs -a libs.dev $(LIB2s)
  1270.     $(EXP)echogs -a libs.dev $(LIB3s)
  1271.     $(EXP)echogs -a libs.dev $(LIB4s)
  1272.     $(EXP)echogs -a libs.dev $(LIB5s)
  1273.     $(EXP)echogs -a libs.dev $(LIB6s)
  1274.     $(ADDMOD) libs -init gscolor
  1275.  
  1276. libx.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBx)
  1277.     $(EXP)echogs -w libx.dev $(LIB1x)
  1278.     $(EXP)echogs -a libx.dev $(LIB2x)
  1279.     $(EXP)echogs -a libx.dev $(LIB3x)
  1280.     $(EXP)echogs -a libx.dev $(LIB4x)
  1281.     $(EXP)echogs -a libx.dev $(LIB5x)
  1282.     $(EXP)echogs -a libx.dev $(LIB6x)
  1283.     $(ADDMOD) libx -init gximage1 gximage2
  1284.  
  1285. libd.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBd)
  1286.     $(EXP)echogs -w libd.dev $(LIB1d)
  1287.     $(EXP)echogs -a libd.dev $(LIB2d)
  1288.     $(EXP)echogs -a libd.dev $(LIB3d)
  1289.  
  1290. # roplib shouldn't be required....
  1291. libcore.dev: $(LIB_MAK) $(ECHOGS_XE)\
  1292.   libs.dev libx.dev libd.dev iscale.dev roplib.dev
  1293.     $(SETMOD) libcore
  1294.     $(ADDMOD) libcore -dev nullpage
  1295.     $(ADDMOD) libcore -include libs libx libd iscale roplib
  1296.  
  1297. # ---------------- Stream support ---------------- #
  1298. # Currently the only thing in the library that uses this is clists.
  1299.  
  1300. stream_h=stream.h $(scommon_h)
  1301.  
  1302. stream.$(OBJ): stream.c $(AK) $(stdio__h) $(memory__h) \
  1303.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1304.  
  1305. # ---------------- File streams ---------------- #
  1306. # Currently only the high-level drivers use these, but more drivers will
  1307. # probably use them eventually.
  1308.  
  1309. sfile_=sfx$(FILE_IMPLEMENTATION).$(OBJ)
  1310. sfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(sfile_)
  1311.     $(SETMOD) sfile $(sfile_)
  1312.  
  1313. sfxstdio.$(OBJ): sfxstdio.c $(AK) $(stdio__h) $(memory__h) \
  1314.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1315.  
  1316. sfxfd.$(OBJ): sfxfd.c $(AK) $(stdio__h) $(errno__h) $(memory__h) \
  1317.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1318.  
  1319. sfxboth.$(OBJ): sfxboth.c sfxstdio.c sfxfd.c
  1320.  
  1321. # ---------------- CCITTFax filters ---------------- #
  1322. # These are used by clists, some drivers, and Level 2 in general.
  1323.  
  1324. cfe_=scfe.$(OBJ) scfetab.$(OBJ) shc.$(OBJ)
  1325. cfe.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfe_)
  1326.     $(SETMOD) cfe $(cfe_)
  1327.  
  1328. scfe.$(OBJ): scfe.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1329.   $(scf_h) $(strimpl_h) $(scfx_h)
  1330.  
  1331. scfetab.$(OBJ): scfetab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1332.  
  1333. shc.$(OBJ): shc.c $(AK) $(std_h) $(scommon_h) $(shc_h)
  1334.  
  1335. cfd_=scfd.$(OBJ) scfdtab.$(OBJ)
  1336. cfd.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfd_)
  1337.     $(SETMOD) cfd $(cfd_)
  1338.  
  1339. scfd.$(OBJ): scfd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1340.   $(scf_h) $(strimpl_h) $(scfx_h)
  1341.  
  1342. scfdtab.$(OBJ): scfdtab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1343.  
  1344. # ---------------- DCT (JPEG) filters ---------------- #
  1345. # These are used by Level 2, and by the JPEG-writing driver.
  1346.  
  1347. # Common code
  1348.  
  1349. sdctc_=sdctc.$(OBJ) sjpegc.$(OBJ)
  1350.  
  1351. sdctc.$(OBJ): sdctc.c $(AK) $(stdio__h)\
  1352.  $(sdct_h) $(strimpl_h)\
  1353.  jpeglib.h
  1354.  
  1355. sjpegc.$(OBJ): sjpegc.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1356.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1357.  jerror.h jpeglib.h
  1358.  
  1359. # Encoding (compression)
  1360.  
  1361. sdcte_=$(sdctc_) sdcte.$(OBJ) sjpege.$(OBJ)
  1362. sdcte.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdcte_) jpege.dev
  1363.     $(SETMOD) sdcte $(sdcte_)
  1364.     $(ADDMOD) sdcte -include jpege
  1365.  
  1366. sdcte.$(OBJ): sdcte.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1367.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1368.   jerror.h jpeglib.h
  1369.  
  1370. sjpege.$(OBJ): sjpege.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1371.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1372.  jerror.h jpeglib.h
  1373.  
  1374. # Decoding (decompression)
  1375.  
  1376. sdctd_=$(sdctc_) sdctd.$(OBJ) sjpegd.$(OBJ)
  1377. sdctd.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdctd_) jpegd.dev
  1378.     $(SETMOD) sdctd $(sdctd_)
  1379.     $(ADDMOD) sdctd -include jpegd
  1380.  
  1381. sdctd.$(OBJ): sdctd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1382.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1383.   jerror.h jpeglib.h
  1384.  
  1385. sjpegd.$(OBJ): sjpegd.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1386.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h)\
  1387.  jerror.h jpeglib.h
  1388.  
  1389. # ---------------- LZW filters ---------------- #
  1390. # These are used by Level 2 in general.
  1391.  
  1392. slzwe_=slzwce
  1393. #slzwe_=slzwe
  1394. lzwe_=$(slzwe_).$(OBJ) slzwc.$(OBJ)
  1395. lzwe.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwe_)
  1396.     $(SETMOD) lzwe $(lzwe_)
  1397.  
  1398. # We need slzwe.dev as a synonym for lzwe.dev for BAND_LIST_STORAGE = memory.
  1399. slzwe.dev: lzwe.dev
  1400.     $(CP_) lzwe.dev slzwe.dev
  1401.  
  1402. slzwce.$(OBJ): slzwce.c $(AK) $(stdio__h) $(gdebug_h)\
  1403.   $(slzwx_h) $(strimpl_h)
  1404.  
  1405. slzwe.$(OBJ): slzwe.c $(AK) $(stdio__h) $(gdebug_h)\
  1406.   $(slzwx_h) $(strimpl_h)
  1407.  
  1408. slzwc.$(OBJ): slzwc.c $(AK) $(std_h)\
  1409.   $(slzwx_h) $(strimpl_h)
  1410.  
  1411. lzwd_=slzwd.$(OBJ) slzwc.$(OBJ)
  1412. lzwd.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwd_)
  1413.     $(SETMOD) lzwd $(lzwd_)
  1414.  
  1415. # We need slzwd.dev as a synonym for lzwd.dev for BAND_LIST_STORAGE = memory.
  1416. slzwd.dev: lzwd.dev
  1417.     $(CP_) lzwd.dev slzwd.dev
  1418.  
  1419. slzwd.$(OBJ): slzwd.c $(AK) $(stdio__h) $(gdebug_h)\
  1420.   $(slzwx_h) $(strimpl_h)
  1421.  
  1422. # ---------------- PCX decoding filter ---------------- #
  1423. # This is an adhoc filter not used by anything in the standard configuration.
  1424.  
  1425. pcxd_=spcxd.$(OBJ)
  1426. pcxd.dev: $(LIB_MAK) $(ECHOGS_XE) $(pcxd_)
  1427.     $(SETMOD) pcxd $(pcxd_)
  1428.  
  1429. spcxd.$(OBJ): spcxd.c $(AK) $(stdio__h) $(memory__h) \
  1430.   $(spcxx_h) $(strimpl_h)
  1431.  
  1432. # ---------------- Pixel-difference filters ---------------- #
  1433. # The Predictor facility of the LZW and Flate filters uses these.
  1434.  
  1435. pdiff_=spdiff.$(OBJ)
  1436. pdiff.dev: $(LIB_MAK) $(ECHOGS_XE) $(pdiff_)
  1437.     $(SETMOD) pdiff $(pdiff_)
  1438.  
  1439. spdiff.$(OBJ): spdiff.c $(AK) $(stdio__h)\
  1440.  $(spdiffx_h) $(strimpl_h)
  1441.  
  1442. # ---------------- PNG pixel prediction filters ---------------- #
  1443. # The Predictor facility of the LZW and Flate filters uses these.
  1444.  
  1445. pngp_=spngp.$(OBJ)
  1446. pngp.dev: $(LIB_MAK) $(ECHOGS_XE) $(pngp_)
  1447.     $(SETMOD) pngp $(pngp_)
  1448.  
  1449. spngp.$(OBJ): spngp.c $(AK) $(memory__h)\
  1450.   $(spngpx_h) $(strimpl_h)
  1451.  
  1452. # ---------------- RunLength filters ---------------- #
  1453. # These are used by clists and also by Level 2 in general.
  1454.  
  1455. rle_=srle.$(OBJ)
  1456. rle.dev: $(LIB_MAK) $(ECHOGS_XE) $(rle_)
  1457.     $(SETMOD) rle $(rle_)
  1458.  
  1459. srle.$(OBJ): srle.c $(AK) $(stdio__h) $(memory__h) \
  1460.   $(srlx_h) $(strimpl_h)
  1461.  
  1462. rld_=srld.$(OBJ)
  1463. rld.dev: $(LIB_MAK) $(ECHOGS_XE) $(rld_)
  1464.     $(SETMOD) rld $(rld_)
  1465.  
  1466. srld.$(OBJ): srld.c $(AK) $(stdio__h) $(memory__h) \
  1467.   $(srlx_h) $(strimpl_h)
  1468.  
  1469. # ---------------- String encoding/decoding filters ---------------- #
  1470. # These are used by the PostScript and PDF writers, and also by the
  1471. # PostScript interpreter.
  1472.  
  1473. scantab.$(OBJ): scantab.c $(AK) $(stdpre_h)\
  1474.  $(scanchar_h) $(scommon_h)
  1475.  
  1476. sfilter2.$(OBJ): sfilter2.c $(AK) $(memory__h) $(stdio__h)\
  1477.  $(sa85x_h) $(scanchar_h) $(sbtx_h) $(strimpl_h)
  1478.  
  1479. sstring.$(OBJ): sstring.c $(AK) $(stdio__h) $(memory__h) $(string__h)\
  1480.  $(scanchar_h) $(sstring_h) $(strimpl_h)
  1481.  
  1482. # ---------------- zlib filters ---------------- #
  1483. # These are used by clists and are also available as filters.
  1484.  
  1485. szlibc_=szlibc.$(OBJ)
  1486.  
  1487. szlibc.$(OBJ): szlibc.c $(AK) $(std_h) \
  1488.   $(gsmemory_h) $(gsstruct_h) $(gstypes_h) $(strimpl_h) $(szlibx_h)
  1489.     $(CCCZ) szlibc.c
  1490.  
  1491. szlibe_=$(szlibc_) szlibe.$(OBJ)
  1492. szlibe.dev: $(LIB_MAK) $(ECHOGS_XE) zlibe.dev $(szlibe_)
  1493.     $(SETMOD) szlibe $(szlibe_)
  1494.     $(ADDMOD) szlibe -include zlibe
  1495.  
  1496. szlibe.$(OBJ): szlibe.c $(AK) $(std_h) \
  1497.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1498.     $(CCCZ) szlibe.c
  1499.  
  1500. szlibd_=$(szlibc_) szlibd.$(OBJ)
  1501. szlibd.dev: $(LIB_MAK) $(ECHOGS_XE) zlibd.dev $(szlibd_)
  1502.     $(SETMOD) szlibd $(szlibd_)
  1503.     $(ADDMOD) szlibd -include zlibd
  1504.  
  1505. szlibd.$(OBJ): szlibd.c $(AK) $(std_h) \
  1506.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1507.     $(CCCZ) szlibd.c
  1508.  
  1509. # ---------------- Command lists ---------------- #
  1510.  
  1511. gxcldev_h=gxcldev.h $(gxclist_h) $(gsropt_h) $(gxht_h) $(gxtmap_h) $(gxdht_h)\
  1512.   $(strimpl_h) $(scfx_h) $(srlx_h)
  1513. gxclpage_h=gxclpage.h $(gxclio_h)
  1514. gxclpath_h=gxclpath.h $(gxfixed_h)
  1515.  
  1516. # Command list package.  Currently the higher-level facilities are required,
  1517. # but eventually they will be optional.
  1518. clist.dev: $(LIB_MAK) $(ECHOGS_XE) clbase.dev clpath.dev
  1519.     $(SETMOD) clist -include clbase clpath
  1520.  
  1521. # Base command list facility.
  1522. clbase1_=gxclist.$(OBJ) gxclbits.$(OBJ) gxclpage.$(OBJ)
  1523. clbase2_=gxclread.$(OBJ) gxclrect.$(OBJ) stream.$(OBJ)
  1524. clbase_=$(clbase1_) $(clbase2_)
  1525. clbase.dev: $(LIB_MAK) $(ECHOGS_XE) $(clbase_) cl$(BAND_LIST_STORAGE).dev \
  1526.   cfe.dev cfd.dev rle.dev rld.dev
  1527.     $(SETMOD) clbase $(clbase1_)
  1528.     $(ADDMOD) clbase -obj $(clbase2_)
  1529.     $(ADDMOD) clbase -include cl$(BAND_LIST_STORAGE) cfe cfd rle rld
  1530.  
  1531. gdevht_h=gdevht.h $(gzht_h)
  1532.  
  1533. gdevht.$(OBJ): gdevht.c $(GXERR) \
  1534.   $(gdevht_h) $(gxdcconv_h) $(gxdcolor_h) $(gxdevice_h) $(gxdither_h)
  1535.  
  1536. gxclist.$(OBJ): gxclist.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1537.  $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1538.  
  1539. gxclbits.$(OBJ): gxclbits.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1540.  $(gsbitops_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h) $(gxfmap_h)
  1541.  
  1542. gxclpage.$(OBJ): gxclpage.c $(AK)\
  1543.  $(gdevprn_h) $(gxcldev_h) $(gxclpage_h)
  1544.  
  1545. # (gxclread shouldn't need gxclpath.h)
  1546. gxclread.$(OBJ): gxclread.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1547.  $(gdevht_h)\
  1548.  $(gsbitops_h) $(gscoord_h) $(gsdevice_h) $(gsstate_h)\
  1549.  $(gxcldev_h) $(gxclpath_h) $(gxcmap_h) $(gxcspace_h) $(gxdcolor_h)\
  1550.  $(gxdevice_h) $(gxdevmem_h)\
  1551.  $(gxhttile_h) $(gxpaint_h) $(gzacpath_h) $(gzcpath_h) $(gzpath_h)\
  1552.  $(stream_h) $(strimpl_h)
  1553.  
  1554. gxclrect.$(OBJ): gxclrect.c $(GXERR)\
  1555.  $(gsutil_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1556.  
  1557. # Higher-level command list facilities.
  1558. clpath_=gxclimag.$(OBJ) gxclpath.$(OBJ)
  1559. clpath.dev: $(LIB_MAK) $(ECHOGS_XE) $(clpath_) psl2cs.dev
  1560.     $(SETMOD) clpath $(clpath_)
  1561.     $(ADDMOD) clpath -include psl2cs
  1562.     $(ADDMOD) clpath -init climag clpath
  1563.  
  1564. gxclimag.$(OBJ): gxclimag.c $(GXERR) $(math__h) $(memory__h)\
  1565.  $(gscspace_h)\
  1566.  $(gxarith_h) $(gxcldev_h) $(gxclpath_h) $(gxdevice_h) $(gxdevmem_h)\
  1567.  $(gxfmap_h)\
  1568.  $(siscale_h) $(strimpl_h)
  1569.  
  1570. gxclpath.$(OBJ): gxclpath.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1571.  $(gxcldev_h) $(gxclpath_h) $(gxcolor2_h) $(gxdevice_h) $(gxdevmem_h)\
  1572.  $(gxpaint_h) \
  1573.  $(gzcpath_h) $(gzpath_h)
  1574.  
  1575. # Implement band lists on files.
  1576.  
  1577. clfile_=gxclfile.$(OBJ)
  1578. clfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(clfile_)
  1579.     $(SETMOD) clfile $(clfile_)
  1580.  
  1581. gxclfile.$(OBJ): gxclfile.c $(stdio__h) $(string__h) \
  1582.   $(gp_h) $(gsmemory_h) $(gserror_h) $(gserrors_h) $(gxclio_h)
  1583.  
  1584. # Implement band lists in memory (RAM).
  1585.  
  1586. clmemory_=gxclmem.$(OBJ) gxcl$(BAND_LIST_COMPRESSOR).$(OBJ)
  1587. clmemory.dev: $(LIB_MAK) $(ECHOGS_XE) $(clmemory_) s$(BAND_LIST_COMPRESSOR)e.dev s$(BAND_LIST_COMPRESSOR)d.dev
  1588.     $(SETMOD) clmemory $(clmemory_)
  1589.     $(ADDMOD) clmemory -include s$(BAND_LIST_COMPRESSOR)e s$(BAND_LIST_COMPRESSOR)d
  1590.     $(ADDMOD) clmemory -init cl_$(BAND_LIST_COMPRESSOR)
  1591.  
  1592. gxclmem_h=gxclmem.h $(gxclio_h) $(strimpl_h)
  1593.  
  1594. gxclmem.$(OBJ): gxclmem.c $(GXERR) $(LIB_MAK) $(memory__h) \
  1595.   $(gxclmem_h)
  1596.  
  1597. # Implement the compression method for RAM-based band lists.
  1598.  
  1599. gxcllzw.$(OBJ): gxcllzw.c $(std_h)\
  1600.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(slzwx_h)
  1601.  
  1602. gxclzlib.$(OBJ): gxclzlib.c $(std_h)\
  1603.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(szlibx_h)
  1604.     $(CCCZ) gxclzlib.c
  1605.  
  1606. # ---------------- Page devices ---------------- #
  1607. # We include this here, rather than in devs.mak, because it is more like
  1608. # a feature than a simple device.
  1609.  
  1610. page_=gdevprn.$(OBJ)
  1611. page.dev: $(LIB_MAK) $(ECHOGS_XE) $(page_) clist.dev
  1612.     $(SETMOD) page $(page_)
  1613.     $(ADDMOD) page -include clist
  1614.  
  1615. gdevprn.$(OBJ): gdevprn.c $(ctype__h) \
  1616.   $(gdevprn_h) $(gp_h) $(gsparam_h) $(gxclio_h)
  1617.  
  1618. # ---------------- Vector devices ---------------- #
  1619. # We include this here for the same reasons as page.dev.
  1620.  
  1621. gdevvec_h=gdevvec.h $(gdevbbox_h) $(gsropt_h) $(gxdevice_h) $(gxistate_h) $(stream_h)
  1622.  
  1623. vector_=gdevvec.$(OBJ)
  1624. vector.dev: $(LIB_MAK) $(ECHOGS_XE) $(vector_) bbox.dev
  1625.     $(SETMOD) vector $(vector_)
  1626.     $(ADDMOD) vector -include bbox
  1627.  
  1628. gdevvec.$(OBJ): gdevvec.c $(GXERR) $(math__h) $(memory__h) $(string__h)\
  1629.  $(gdevvec_h) $(gp_h) $(gscspace_h) $(gsparam_h) $(gsutil_h)\
  1630.  $(gxdcolor_h) $(gxfixed_h) $(gxpaint_h)\
  1631.  $(gzcpath_h) $(gzpath_h)
  1632.  
  1633. # ---------------- Image scaling filter ---------------- #
  1634.  
  1635. iscale_=siscale.$(OBJ)
  1636. iscale.dev: $(LIB_MAK) $(ECHOGS_XE) $(iscale_)
  1637.     $(SETMOD) iscale $(iscale_)
  1638.  
  1639. siscale.$(OBJ): siscale.c $(AK) $(math__h) $(memory__h) $(stdio__h) \
  1640.   $(siscale_h) $(strimpl_h)
  1641.  
  1642. # ---------------- RasterOp et al ---------------- #
  1643. # Currently this module is required, but it should be optional.
  1644.  
  1645. roplib_=gdevmrop.$(OBJ) gsrop.$(OBJ) gsroptab.$(OBJ)
  1646. roplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(roplib_)
  1647.     $(SETMOD) roplib $(roplib_)
  1648.     $(ADDMOD) roplib -init roplib
  1649.  
  1650. gdevrun.$(OBJ): gdevrun.c $(GXERR) $(memory__h) \
  1651.   $(gxdevice_h) $(gxdevmem_h)
  1652.  
  1653. gdevmrop.$(OBJ): gdevmrop.c $(GXERR) $(memory__h) \
  1654.   $(gsbittab_h) $(gsropt_h) \
  1655.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxdevrop_h) \
  1656.   $(gdevmrop_h)
  1657.  
  1658. gsrop.$(OBJ): gsrop.c $(GXERR) \
  1659.   $(gsrop_h) $(gzstate_h)
  1660.  
  1661. gsroptab.$(OBJ): gsroptab.c $(stdpre_h) $(gsropt_h)
  1662.     $(CCLEAF) gsroptab.c
  1663.  
  1664. # -------- Composite (PostScript Type 0) font support -------- #
  1665.  
  1666. cmaplib_=gsfcmap.$(OBJ)
  1667. cmaplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmaplib_)
  1668.     $(SETMOD) cmaplib $(cmaplib_)
  1669.  
  1670. gsfcmap.$(OBJ): gsfcmap.c $(GXERR)\
  1671.  $(gsstruct_h) $(gxfcmap_h)
  1672.  
  1673. psf0lib_=gschar0.$(OBJ) gsfont0.$(OBJ)
  1674. psf0lib.dev: $(LIB_MAK) $(ECHOGS_XE) cmaplib.dev $(psf0lib_)
  1675.     $(SETMOD) psf0lib $(psf0lib_)
  1676.     $(ADDMOD) psf0lib -include cmaplib
  1677.  
  1678. gschar0.$(OBJ): gschar0.c $(GXERR) $(memory__h)\
  1679.  $(gsstruct_h) $(gxfixed_h) $(gxdevice_h) $(gxdevmem_h)\
  1680.  $(gsfcmap_h) $(gxfont_h) $(gxfont0_h) $(gxchar_h)
  1681.  
  1682. gsfont0.$(OBJ): gsfont0.c $(GXERR) $(memory__h)\
  1683.  $(gsmatrix_h) $(gsstruct_h) $(gxfixed_h) $(gxdevmem_h) $(gxfcache_h)\
  1684.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxdevice_h)
  1685.  
  1686. # ---------------- Pattern color ---------------- #
  1687.  
  1688. patlib_=gspcolor.$(OBJ) gxclip2.$(OBJ) gxpcmap.$(OBJ)
  1689. patlib.dev: $(LIB_MAK) $(ECHOGS_XE) cmyklib.dev psl2cs.dev $(patlib_)
  1690.     $(SETMOD) patlib -include cmyklib psl2cs
  1691.     $(ADDMOD) patlib -obj $(patlib_)
  1692.  
  1693. gspcolor.$(OBJ): gspcolor.c $(GXERR) $(math__h) \
  1694.   $(gsimage_h) $(gspath_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1695.   $(gxarith_h) $(gxcolor2_h) $(gxcoord_h) $(gxclip2_h) $(gxcspace_h) \
  1696.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) \
  1697.   $(gxfixed_h) $(gxmatrix_h) $(gxpath_h) $(gxpcolor_h) $(gzstate_h)
  1698.  
  1699. gxclip2.$(OBJ): gxclip2.c $(GXERR) $(memory__h) \
  1700.   $(gsstruct_h) $(gxclip2_h) $(gxdevice_h) $(gxdevmem_h)
  1701.  
  1702. gxpcmap.$(OBJ): gxpcmap.c $(GXERR) $(math__h) $(memory__h)\
  1703.  $(gsstruct_h) $(gsutil_h)\
  1704.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  1705.  $(gxfixed_h) $(gxmatrix_h) $(gxpcolor_h)\
  1706.  $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1707.  
  1708. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  1709.  
  1710. type1lib_=gxtype1.$(OBJ) gxhint1.$(OBJ) gxhint2.$(OBJ) gxhint3.$(OBJ)
  1711.  
  1712. gscrypt1_h=gscrypt1.h
  1713. gstype1_h=gstype1.h
  1714. gxfont1_h=gxfont1.h
  1715. gxop1_h=gxop1.h
  1716. gxtype1_h=gxtype1.h $(gscrypt1_h) $(gstype1_h) $(gxop1_h)
  1717.  
  1718. gxtype1.$(OBJ): gxtype1.c $(GXERR) $(math__h)\
  1719.  $(gsccode_h) $(gsline_h) $(gsstruct_h)\
  1720.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h)\
  1721.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1722.  $(gzpath_h)
  1723.  
  1724. gxhint1.$(OBJ): gxhint1.c $(GXERR)\
  1725.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1726.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1727.  
  1728. gxhint2.$(OBJ): gxhint2.c $(GXERR) $(memory__h)\
  1729.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1730.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1731.  
  1732. gxhint3.$(OBJ): gxhint3.c $(GXERR) $(math__h)\
  1733.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1734.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)\
  1735.  $(gzpath_h)
  1736.  
  1737. # Type 1 charstrings
  1738.  
  1739. psf1lib_=gstype1.$(OBJ)
  1740. psf1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf1lib_) $(type1lib_)
  1741.     $(SETMOD) psf1lib $(psf1lib_)
  1742.     $(ADDMOD) psf1lib $(type1lib_)
  1743.     $(ADDMOD) psf1lib -init gstype1
  1744.  
  1745. gstype1.$(OBJ): gstype1.c $(GXERR) $(math__h) $(memory__h)\
  1746.  $(gsstruct_h)\
  1747.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1748.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1749.  $(gzpath_h)
  1750.  
  1751. # Type 2 charstrings
  1752.  
  1753. psf2lib_=gstype2.$(OBJ)
  1754. psf2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf2lib_) $(type1lib_)
  1755.     $(SETMOD) psf2lib $(psf2lib_)
  1756.     $(ADDMOD) psf2lib $(type1lib_)
  1757.     $(ADDMOD) psf2lib -init gstype2
  1758.  
  1759. gstype2.$(OBJ): gstype2.c $(GXERR) $(math__h) $(memory__h)\
  1760.  $(gsstruct_h)\
  1761.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1762.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1763.  $(gzpath_h)
  1764.  
  1765. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  1766.  
  1767. ttflib_=gstype42.$(OBJ)
  1768. ttflib.dev: $(LIB_MAK) $(ECHOGS_XE) $(ttflib_)
  1769.     $(SETMOD) ttflib $(ttflib_)
  1770.  
  1771. gxfont42_h=gxfont42.h
  1772.  
  1773. gstype42.$(OBJ): gstype42.c $(GXERR) $(memory__h) \
  1774.   $(gsccode_h) $(gsmatrix_h) $(gsstruct_h) \
  1775.   $(gxfixed_h) $(gxfont_h) $(gxfont42_h) $(gxistate_h) $(gxpath_h)
  1776.  
  1777. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  1778.  
  1779. cmyklib_=gscolor1.$(OBJ) gsht1.$(OBJ)
  1780. cmyklib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmyklib_)
  1781.     $(SETMOD) cmyklib $(cmyklib_)
  1782.     $(ADDMOD) cmyklib -init gscolor1
  1783.  
  1784. gscolor1.$(OBJ): gscolor1.c $(GXERR) \
  1785.   $(gsccolor_h) $(gscolor1_h) $(gsstruct_h) $(gsutil_h) \
  1786.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) \
  1787.   $(gzstate_h)
  1788.  
  1789. gsht1.$(OBJ): gsht1.c $(GXERR) $(memory__h)\
  1790.  $(gsstruct_h) $(gsutil_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1791.  
  1792. colimlib_=gximage3.$(OBJ)
  1793. colimlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(colimlib_)
  1794.     $(SETMOD) colimlib $(colimlib_)
  1795.     $(ADDMOD) colimlib -init gximage3
  1796.  
  1797. gximage3.$(OBJ): gximage3.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1798.  $(gsccolor_h) $(gspaint_h)\
  1799.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcconv_h) $(gxdcolor_h)\
  1800.  $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h)\
  1801.  $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1802.  $(gzpath_h) $(gzstate_h)
  1803.  
  1804. # ---------------- HSB color ---------------- #
  1805.  
  1806. hsblib_=gshsb.$(OBJ)
  1807. hsblib.dev: $(LIB_MAK) $(ECHOGS_XE) $(hsblib_)
  1808.     $(SETMOD) hsblib $(hsblib_)
  1809.  
  1810. gshsb.$(OBJ): gshsb.c $(GX) \
  1811.   $(gscolor_h) $(gshsb_h) $(gxfrac_h)
  1812.  
  1813. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  1814.  
  1815. path1lib_=gspath1.$(OBJ)
  1816. path1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(path1lib_)
  1817.     $(SETMOD) path1lib $(path1lib_)
  1818.  
  1819. gspath1.$(OBJ): gspath1.c $(GXERR) $(math__h) \
  1820.   $(gscoord_h) $(gspath_h) $(gsstruct_h) \
  1821.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h) \
  1822.   $(gzstate_h) $(gzpath_h)
  1823.  
  1824. # --------------- Level 2 color space and color image support --------------- #
  1825.  
  1826. psl2cs_=gscolor2.$(OBJ)
  1827. psl2cs.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2cs_)
  1828.     $(SETMOD) psl2cs $(psl2cs_)
  1829.  
  1830. gscolor2.$(OBJ): gscolor2.c $(GXERR) \
  1831.   $(gxarith_h) $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gxmatrix_h) \
  1832.   $(gzstate_h)
  1833.  
  1834. psl2lib_=gximage4.$(OBJ) gximage5.$(OBJ)
  1835. psl2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2lib_) colimlib.dev psl2cs.dev
  1836.     $(SETMOD) psl2lib $(psl2lib_)
  1837.     $(ADDMOD) psl2lib -init gximage4 gximage5
  1838.     $(ADDMOD) psl2lib -include colimlib psl2cs
  1839.  
  1840. gximage4.$(OBJ): gximage4.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1841.  $(gsccolor_h) $(gspaint_h)\
  1842.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1843.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1844.  $(gxmatrix_h)\
  1845.  $(gzpath_h)
  1846.  
  1847. gximage5.$(OBJ): gximage5.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1848.  $(gsccolor_h) $(gspaint_h)\
  1849.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1850.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1851.  $(gxmatrix_h)\
  1852.  $(gzpath_h)
  1853.  
  1854. # ---------------- Display Postscript / Level 2 support ---------------- #
  1855.  
  1856. dps2lib_=gsdps1.$(OBJ)
  1857. dps2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(dps2lib_)
  1858.     $(SETMOD) dps2lib $(dps2lib_)
  1859.  
  1860. gsdps1.$(OBJ): gsdps1.c $(GXERR) $(math__h)\
  1861.  $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gspath2_h)\
  1862.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1863.  
  1864. # ---------------- CIE color ---------------- #
  1865.  
  1866. cielib_=gscie.$(OBJ) gxctable.$(OBJ)
  1867. cielib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cielib_)
  1868.     $(SETMOD) cielib $(cielib_)
  1869.  
  1870. gscie.$(OBJ): gscie.c $(GXERR) $(math__h) \
  1871.   $(gscie_h) $(gscolor2_h) $(gsmatrix_h) $(gsstruct_h) \
  1872.   $(gxarith_h) $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gzstate_h)
  1873.  
  1874. gxctable.$(OBJ): gxctable.c $(GX) \
  1875.   $(gxfixed_h) $(gxfrac_h) $(gxctable_h)
  1876.  
  1877. # ---------------- Separation colors ---------------- #
  1878.  
  1879. seprlib_=gscsepr.$(OBJ)
  1880. seprlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(seprlib_)
  1881.     $(SETMOD) seprlib $(seprlib_)
  1882.  
  1883. gscsepr.$(OBJ): gscsepr.c $(GXERR)\
  1884.  $(gscsepr_h) $(gsmatrix_h) $(gsrefct_h)\
  1885.  $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gzstate_h)
  1886.  
  1887. # ----------------------- Platform-specific modules ----------------------- #
  1888. # Platform-specific code doesn't really belong here: this is code that is
  1889. # shared among multiple platforms.
  1890.  
  1891. # Frame buffer implementations.
  1892.  
  1893. gp_nofb.$(OBJ): gp_nofb.c $(GX) \
  1894.   $(gp_h) $(gxdevice_h)
  1895.  
  1896. gp_dosfb.$(OBJ): gp_dosfb.c $(AK) $(malloc__h) $(memory__h)\
  1897.  $(gx_h) $(gp_h) $(gserrors_h) $(gxdevice_h)
  1898.  
  1899. # MS-DOS file system, also used by Desqview/X.
  1900. gp_dosfs.$(OBJ): gp_dosfs.c $(AK) $(dos__h) $(gp_h) $(gx_h)
  1901.  
  1902. # MS-DOS file enumeration, *not* used by Desqview/X.
  1903. gp_dosfe.$(OBJ): gp_dosfe.c $(AK) $(stdio__h) $(memory__h) $(string__h) \
  1904.   $(dos__h) $(gstypes_h) $(gsmemory_h) $(gsstruct_h) $(gp_h) $(gsutil_h)
  1905.  
  1906. # Other MS-DOS facilities.
  1907. gp_msdos.$(OBJ): gp_msdos.c $(AK) $(dos__h) $(stdio__h) $(string__h)\
  1908.  $(gsmemory_h) $(gstypes_h) $(gp_h)
  1909.  
  1910. # Unix(-like) file system, also used by Desqview/X.
  1911. gp_unifs.$(OBJ): gp_unifs.c $(AK) $(memory__h) $(string__h) $(gx_h) $(gp_h) \
  1912.   $(gsstruct_h) $(gsutil_h) $(stat__h) $(dirent__h)
  1913.  
  1914. # Unix(-like) file name syntax, *not* used by Desqview/X.
  1915. gp_unifn.$(OBJ): gp_unifn.c $(AK) $(gx_h) $(gp_h)
  1916.  
  1917. # ----------------------------- Main program ------------------------------ #
  1918.  
  1919. # Main program for library testing
  1920.  
  1921. gslib.$(OBJ): gslib.c $(AK) $(math__h) \
  1922.   $(gx_h) $(gp_h) $(gserrors_h) $(gsmatrix_h) $(gsstate_h) $(gscspace_h) \
  1923.   $(gscdefs_h) $(gscolor2_h) $(gscoord_h) $(gslib_h) $(gsparam_h) \
  1924.   $(gspaint_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1925.   $(gxalloc_h) $(gxdevice_h)
  1926. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  1927. # This file is part of Aladdin Ghostscript.
  1928. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  1929. # or distributor accepts any responsibility for the consequences of using it,
  1930. # or for whether it serves any particular purpose or works at all, unless he
  1931. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  1932. # License (the "License") for full details.
  1933. # Every copy of Aladdin Ghostscript must include a copy of the License,
  1934. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  1935. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  1936. # under certain conditions described in the License.  Among other things, the
  1937. # License requires that the copyright notice and this notice be preserved on
  1938. # all copies.
  1939.  
  1940. # (Platform-independent) makefile for language interpreters.
  1941. # See the end of gs.mak for where this fits into the build process.
  1942.  
  1943. # Define the name of this makefile.
  1944. INT_MAK=int.mak
  1945.  
  1946. # ======================== Interpreter support ======================== #
  1947.  
  1948. # This is support code for all interpreters, not just PostScript and PDF.
  1949. # It knows about the PostScript data types, but isn't supposed to
  1950. # depend on anything outside itself.
  1951.  
  1952. errors_h=errors.h
  1953. idebug_h=idebug.h
  1954. idict_h=idict.h
  1955. igc_h=igc.h
  1956. igcstr_h=igcstr.h
  1957. iname_h=iname.h
  1958. inamedef_h=inamedef.h $(gconfigv_h) $(iname_h)
  1959. ipacked_h=ipacked.h
  1960. iref_h=iref.h
  1961. isave_h=isave.h
  1962. isstate_h=isstate.h
  1963. istruct_h=istruct.h $(gsstruct_h)
  1964. iutil_h=iutil.h
  1965. ivmspace_h=ivmspace.h $(gsgc_h)
  1966. opdef_h=opdef.h
  1967. # Nested include files
  1968. ghost_h=ghost.h $(gx_h) $(iref_h)
  1969. imemory_h=imemory.h $(gsalloc_h) $(ivmspace_h)
  1970. ialloc_h=ialloc.h $(imemory_h)
  1971. iastruct_h=iastruct.h $(gxobj_h) $(ialloc_h)
  1972. iastate_h=iastate.h $(gxalloc_h) $(ialloc_h) $(istruct_h)
  1973. store_h=store.h $(ialloc_h)
  1974.  
  1975. GH=$(AK) $(ghost_h)
  1976.  
  1977. isupport1_=ialloc.$(OBJ) igc.$(OBJ) igcref.$(OBJ) igcstr.$(OBJ)
  1978. isupport2_=ilocate.$(OBJ) iname.$(OBJ) isave.$(OBJ)
  1979. isupport_=$(isupport1_) $(isupport2_)
  1980. isupport.dev: $(INT_MAK) $(ECHOGS_XE) $(isupport_)
  1981.     $(SETMOD) isupport $(isupport1_)
  1982.     $(ADDMOD) isupport -obj $(isupport2_)
  1983.     $(ADDMOD) isupport -init igcref
  1984.  
  1985. ialloc.$(OBJ): ialloc.c $(AK) $(memory__h) $(gx_h)\
  1986.  $(errors_h) $(gsstruct_h) $(gxarith_h)\
  1987.  $(iastate_h) $(iref_h) $(ivmspace_h) $(store_h)
  1988.  
  1989. # igc.c, igcref.c, and igcstr.c should really be in the dpsand2 list,
  1990. # but since all the GC enumeration and relocation routines refer to them,
  1991. # it's too hard to separate them out from the Level 1 base.
  1992. igc.$(OBJ): igc.c $(GH) $(memory__h)\
  1993.   $(errors_h) $(gsexit_h) $(gsmdebug_h) $(gsstruct_h) $(gsutil_h) \
  1994.   $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(inamedef_h) \
  1995.   $(ipacked_h) $(isave_h) $(isstate_h) $(istruct_h) $(opdef_h)
  1996.  
  1997. igcref.$(OBJ): igcref.c $(GH) $(memory__h)\
  1998.  $(gsexit_h) $(gsstruct_h)\
  1999.  $(iastate_h) $(idebug_h) $(igc_h) $(iname_h) $(ipacked_h) $(store_h)
  2000.  
  2001. igcstr.$(OBJ): igcstr.c $(GH) $(memory__h)\
  2002.  $(gsmdebug_h) $(gsstruct_h) $(iastate_h) $(igcstr_h)
  2003.  
  2004. ilocate.$(OBJ): ilocate.c $(GH) $(memory__h)\
  2005.  $(errors_h) $(gsexit_h) $(gsstruct_h)\
  2006.  $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(iname_h)\
  2007.  $(ipacked_h) $(isstate_h) $(iutil_h) $(ivmspace_h)\
  2008.  $(store_h)
  2009.  
  2010. iname.$(OBJ): iname.c $(GH) $(memory__h) $(string__h)\
  2011.  $(gsstruct_h) $(gxobj_h)\
  2012.  $(errors_h) $(imemory_h) $(inamedef_h) $(isave_h) $(store_h)
  2013.  
  2014. isave.$(OBJ): isave.c $(GH) $(memory__h)\
  2015.  $(errors_h) $(gsexit_h) $(gsstruct_h) $(gsutil_h)\
  2016.  $(iastate_h) $(inamedef_h) $(isave_h) $(isstate_h) $(ivmspace_h)\
  2017.  $(ipacked_h) $(store_h)
  2018.  
  2019. ### Include files
  2020.  
  2021. idparam_h=idparam.h
  2022. ilevel_h=ilevel.h
  2023. iparam_h=iparam.h $(gsparam_h)
  2024. istack_h=istack.h
  2025. iutil2_h=iutil2.h
  2026. opcheck_h=opcheck.h
  2027. opextern_h=opextern.h
  2028. # Nested include files
  2029. dstack_h=dstack.h $(istack_h)
  2030. estack_h=estack.h $(istack_h)
  2031. ostack_h=ostack.h $(istack_h)
  2032. oper_h=oper.h $(iutil_h) $(opcheck_h) $(opdef_h) $(opextern_h) $(ostack_h)
  2033.  
  2034. idebug.$(OBJ): idebug.c $(GH) $(string__h)\
  2035.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2036.  $(ostack_h) $(opdef_h) $(ipacked_h) $(store_h)
  2037.  
  2038. idict.$(OBJ): idict.c $(GH) $(string__h) $(errors_h)\
  2039.  $(ialloc_h) $(idebug_h) $(ivmspace_h) $(inamedef_h) $(ipacked_h)\
  2040.  $(isave_h) $(store_h) $(iutil_h) $(idict_h) $(dstack_h)
  2041.  
  2042. idparam.$(OBJ): idparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2043.  $(gsmatrix_h) $(gsuid_h)\
  2044.  $(idict_h) $(idparam_h) $(ilevel_h) $(imemory_h) $(iname_h) $(iutil_h)\
  2045.  $(oper_h) $(store_h)
  2046.  
  2047. iparam.$(OBJ): iparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2048.  $(ialloc_h) $(idict_h) $(iname_h) $(imemory_h) $(iparam_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2049.  $(opcheck_h) $(store_h)
  2050.  
  2051. istack.$(OBJ): istack.c $(GH) $(memory__h) \
  2052.   $(errors_h) $(gsstruct_h) $(gsutil_h) \
  2053.   $(ialloc_h) $(istack_h) $(istruct_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2054.  
  2055. iutil.$(OBJ): iutil.c $(GH) $(math__h) $(memory__h) $(string__h)\
  2056.  $(gsccode_h) $(gsmatrix_h) $(gsutil_h) $(gxfont_h)\
  2057.  $(errors_h) $(idict_h) $(imemory_h) $(iutil_h) $(ivmspace_h)\
  2058.  $(iname_h) $(ipacked_h) $(oper_h) $(store_h)
  2059.  
  2060. # ======================== PostScript Level 1 ======================== #
  2061.  
  2062. ###### Include files
  2063.  
  2064. files_h=files.h
  2065. fname_h=fname.h
  2066. ichar_h=ichar.h
  2067. icharout_h=icharout.h
  2068. icolor_h=icolor.h
  2069. icontext_h=icontext.h $(imemory_h) $(istack_h)
  2070. icsmap_h=icsmap.h
  2071. ifont_h=ifont.h $(gsccode_h) $(gsstruct_h)
  2072. iht_h=iht.h
  2073. iimage_h=iimage.h
  2074. imain_h=imain.h $(gsexit_h)
  2075. imainarg_h=imainarg.h
  2076. iminst_h=iminst.h $(imain_h)
  2077. interp_h=interp.h
  2078. iparray_h=iparray.h
  2079. iscannum_h=iscannum.h
  2080. istream_h=istream.h
  2081. main_h=main.h $(iminst_h)
  2082. overlay_h=overlay.h
  2083. sbwbs_h=sbwbs.h
  2084. sfilter_h=sfilter.h $(gstypes_h)
  2085. shcgen_h=shcgen.h
  2086. smtf_h=smtf.h
  2087. # Nested include files
  2088. bfont_h=bfont.h $(ifont_h)
  2089. ifilter_h=ifilter.h $(istream_h) $(ivmspace_h)
  2090. igstate_h=igstate.h $(gsstate_h) $(gxstate_h) $(istruct_h)
  2091. iscan_h=iscan.h $(sa85x_h) $(sstring_h)
  2092. sbhc_h=sbhc.h $(shc_h)
  2093. # Include files for optional features
  2094. ibnum_h=ibnum.h
  2095.  
  2096. ### Initialization and scanning
  2097.  
  2098. iconfig=iconfig$(CONFIG)
  2099. $(iconfig).$(OBJ): iconf.c $(stdio__h) \
  2100.   $(gconfig_h) $(gscdefs_h) $(gsmemory_h) \
  2101.   $(files_h) $(iminst_h) $(iref_h) $(ivmspace_h) $(opdef_h) $(stream_h)
  2102.     $(RM_) gconfig.h
  2103.     $(RM_) $(iconfig).c
  2104.     $(CP_) $(gconfig_h) gconfig.h
  2105.     $(CP_) iconf.c $(iconfig).c
  2106.     $(CCC) $(iconfig).c
  2107.     $(RM_) gconfig.h
  2108.     $(RM_) $(iconfig).c
  2109.  
  2110. iinit.$(OBJ): iinit.c $(GH) $(string__h)\
  2111.  $(gscdefs_h) $(gsexit_h) $(gsstruct_h)\
  2112.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h)\
  2113.  $(ilevel_h) $(iname_h) $(interp_h) $(opdef_h)\
  2114.  $(ipacked_h) $(iparray_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2115.  
  2116. iscan.$(OBJ): iscan.c $(GH) $(memory__h)\
  2117.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h) $(files_h)\
  2118.  $(ilevel_h) $(iutil_h) $(iscan_h) $(iscannum_h) $(istruct_h) $(ivmspace_h)\
  2119.  $(iname_h) $(ipacked_h) $(iparray_h) $(istream_h) $(ostack_h) $(store_h)\
  2120.  $(stream_h) $(strimpl_h) $(sfilter_h) $(scanchar_h)
  2121.  
  2122. iscannum.$(OBJ): iscannum.c $(GH) $(math__h)\
  2123.   $(errors_h) $(iscannum_h) $(scanchar_h) $(scommon_h) $(store_h)
  2124.  
  2125. ### Streams
  2126.  
  2127. sfilter1.$(OBJ): sfilter1.c $(AK) $(stdio__h) $(memory__h) \
  2128.   $(sfilter_h) $(strimpl_h)
  2129.  
  2130. ###### Operators
  2131.  
  2132. OP=$(GH) $(errors_h) $(oper_h)
  2133.  
  2134. ### Non-graphics operators
  2135.  
  2136. zarith.$(OBJ): zarith.c $(OP) $(math__h) $(store_h)
  2137.  
  2138. zarray.$(OBJ): zarray.c $(OP) $(memory__h) $(ialloc_h) $(ipacked_h) $(store_h)
  2139.  
  2140. zcontrol.$(OBJ): zcontrol.c $(OP) $(string__h)\
  2141.  $(estack_h) $(files_h) $(ipacked_h) $(iutil_h) $(store_h) $(stream_h)
  2142.  
  2143. zdict.$(OBJ): zdict.c $(OP) \
  2144.   $(dstack_h) $(idict_h) $(ilevel_h) $(iname_h) $(ipacked_h) $(ivmspace_h) \
  2145.   $(store_h)
  2146.  
  2147. zfile.$(OBJ): zfile.c $(OP) $(memory__h) $(string__h) $(gp_h)\
  2148.  $(gsstruct_h) $(gxiodev_h) \
  2149.  $(ialloc_h) $(estack_h) $(files_h) $(fname_h) $(ilevel_h) $(interp_h) $(iutil_h)\
  2150.  $(isave_h) $(main_h) $(sfilter_h) $(stream_h) $(strimpl_h) $(store_h)
  2151.  
  2152. zfileio.$(OBJ): zfileio.c $(OP) $(gp_h) \
  2153.   $(files_h) $(ifilter_h) $(store_h) $(stream_h) $(strimpl_h) \
  2154.   $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h)
  2155.  
  2156. zfilter.$(OBJ): zfilter.c $(OP) $(memory__h)\
  2157.  $(gsstruct_h) $(files_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2158.  $(sfilter_h) $(srlx_h) $(sstring_h) $(store_h) $(stream_h) $(strimpl_h)
  2159.  
  2160. zfname.$(OBJ): zfname.c $(OP) $(memory__h)\
  2161.  $(fname_h) $(gxiodev_h) $(ialloc_h) $(stream_h)
  2162.  
  2163. zfproc.$(OBJ): zfproc.c $(GH) $(memory__h)\
  2164.  $(errors_h) $(oper_h)\
  2165.  $(estack_h) $(files_h) $(gsstruct_h) $(ialloc_h) $(ifilter_h) $(istruct_h)\
  2166.  $(store_h) $(stream_h) $(strimpl_h)
  2167.  
  2168. zgeneric.$(OBJ): zgeneric.c $(OP) $(memory__h)\
  2169.  $(idict_h) $(estack_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(store_h)
  2170.  
  2171. ziodev.$(OBJ): ziodev.c $(OP) $(memory__h) $(stdio__h) $(string__h)\
  2172.  $(gp_h) $(gpcheck_h)\
  2173.  $(gsstruct_h) $(gxiodev_h)\
  2174.  $(files_h) $(ialloc_h) $(ivmspace_h) $(store_h) $(stream_h)
  2175.  
  2176. zmath.$(OBJ): zmath.c $(OP) $(math__h) $(gxfarith_h) $(store_h)
  2177.  
  2178. zmisc.$(OBJ): zmisc.c $(OP) $(gscdefs_h) $(gp_h) \
  2179.   $(errno__h) $(memory__h) $(string__h) \
  2180.   $(ialloc_h) $(idict_h) $(dstack_h) $(iname_h) $(ivmspace_h) $(ipacked_h) $(store_h)
  2181.  
  2182. zpacked.$(OBJ): zpacked.c $(OP) \
  2183.   $(ialloc_h) $(idict_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(iparray_h) \
  2184.   $(istack_h) $(store_h)
  2185.  
  2186. zrelbit.$(OBJ): zrelbit.c $(OP) $(gsutil_h) $(store_h) $(idict_h)
  2187.  
  2188. zstack.$(OBJ): zstack.c $(OP) $(memory__h)\
  2189.  $(ialloc_h) $(istack_h) $(store_h)
  2190.  
  2191. zstring.$(OBJ): zstring.c $(OP) $(memory__h)\
  2192.  $(gsutil_h)\
  2193.  $(ialloc_h) $(iname_h) $(ivmspace_h) $(store_h)
  2194.  
  2195. zsysvm.$(OBJ): zsysvm.c $(GH)\
  2196.  $(ialloc_h) $(ivmspace_h) $(oper_h) $(store_h)
  2197.  
  2198. ztoken.$(OBJ): ztoken.c $(OP) \
  2199.   $(estack_h) $(files_h) $(gsstruct_h) $(iscan_h) \
  2200.   $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2201.  
  2202. ztype.$(OBJ): ztype.c $(OP) $(math__h) $(memory__h) $(string__h)\
  2203.  $(dstack_h) $(idict_h) $(imemory_h) $(iname_h)\
  2204.  $(iscan_h) $(iutil_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2205.  
  2206. zvmem.$(OBJ): zvmem.c $(OP)\
  2207.  $(dstack_h) $(estack_h) $(files_h)\
  2208.  $(ialloc_h) $(idict_h) $(igstate_h) $(isave_h) $(store_h) $(stream_h)\
  2209.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h)
  2210.  
  2211. ### Graphics operators
  2212.  
  2213. zchar.$(OBJ): zchar.c $(OP)\
  2214.  $(gsstruct_h) $(gxarith_h) $(gxfixed_h) $(gxmatrix_h)\
  2215.  $(gxchar_h) $(gxdevice_h) $(gxfont_h) $(gzpath_h) $(gzstate_h)\
  2216.  $(dstack_h) $(estack_h) $(ialloc_h) $(ichar_h) $(idict_h) $(ifont_h)\
  2217.  $(ilevel_h) $(iname_h) $(igstate_h) $(ipacked_h) $(store_h)
  2218.  
  2219. # zcharout is used for Type 1 and Type 42 fonts only.
  2220. zcharout.$(OBJ): zcharout.c $(OP)\
  2221.  $(gschar_h) $(gxdevice_h) $(gxfont_h)\
  2222.  $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h)\
  2223.  $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2224.  
  2225. zcolor.$(OBJ): zcolor.c $(OP) \
  2226.   $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gxdevice_h) $(gxcmap_h) \
  2227.   $(ialloc_h) $(icolor_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2228.  
  2229. zdevice.$(OBJ): zdevice.c $(OP) $(string__h)\
  2230.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(interp_h) $(iparam_h) $(ivmspace_h)\
  2231.  $(gsmatrix_h) $(gsstate_h) $(gxdevice_h) $(store_h)
  2232.  
  2233. zfont.$(OBJ): zfont.c $(OP)\
  2234.  $(gschar_h) $(gsstruct_h) $(gxdevice_h) $(gxfont_h) $(gxfcache_h)\
  2235.  $(gzstate_h)\
  2236.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(isave_h) $(ivmspace_h)\
  2237.  $(bfont_h) $(store_h)
  2238.  
  2239. zfont2.$(OBJ): zfont2.c $(OP) $(memory__h) $(string__h)\
  2240.  $(gsmatrix_h) $(gxdevice_h) $(gschar_h) $(gxfixed_h) $(gxfont_h)\
  2241.  $(ialloc_h) $(bfont_h) $(idict_h) $(idparam_h) $(ilevel_h) $(iname_h) $(istruct_h)\
  2242.  $(ipacked_h) $(store_h)
  2243.  
  2244. zgstate.$(OBJ): zgstate.c $(OP) $(math__h)\
  2245.  $(gsmatrix_h) $(ialloc_h) $(idict_h) $(igstate_h) $(istruct_h) $(store_h)
  2246.  
  2247. zht.$(OBJ): zht.c $(OP) $(memory__h)\
  2248.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2249.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2250.  
  2251. zimage.$(OBJ): zimage.c $(OP) \
  2252.   $(estack_h) $(ialloc_h) $(ifilter_h) $(igstate_h) $(iimage_h) $(ilevel_h) \
  2253.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  2254.   $(store_h) $(stream_h)
  2255.  
  2256. zmatrix.$(OBJ): zmatrix.c $(OP)\
  2257.  $(gsmatrix_h) $(igstate_h) $(gscoord_h) $(store_h)
  2258.  
  2259. zpaint.$(OBJ): zpaint.c $(OP)\
  2260.  $(gspaint_h) $(igstate_h)
  2261.  
  2262. zpath.$(OBJ): zpath.c $(OP) $(math__h) \
  2263.   $(gsmatrix_h) $(gspath_h) $(igstate_h) $(store_h)
  2264.  
  2265. # Define the base PostScript language interpreter.
  2266. # This is the subset of PostScript Level 1 required by our PDF reader.
  2267.  
  2268. INT1=icontext.$(OBJ) idebug.$(OBJ) idict.$(OBJ) idparam.$(OBJ)
  2269. INT2=iinit.$(OBJ) interp.$(OBJ) iparam.$(OBJ) ireclaim.$(OBJ)
  2270. INT3=iscan.$(OBJ) iscannum.$(OBJ) istack.$(OBJ) iutil.$(OBJ)
  2271. INT4=scantab.$(OBJ) sfilter1.$(OBJ) sstring.$(OBJ) stream.$(OBJ)
  2272. Z1=zarith.$(OBJ) zarray.$(OBJ) zcontrol.$(OBJ) zdict.$(OBJ)
  2273. Z1OPS=zarith zarray zcontrol zdict
  2274. Z2=zfile.$(OBJ) zfileio.$(OBJ) zfilter.$(OBJ) zfname.$(OBJ) zfproc.$(OBJ)
  2275. Z2OPS=zfile zfileio zfilter zfproc
  2276. Z3=zgeneric.$(OBJ) ziodev.$(OBJ) zmath.$(OBJ) zmisc.$(OBJ) zpacked.$(OBJ)
  2277. Z3OPS=zgeneric ziodev zmath zmisc zpacked
  2278. Z4=zrelbit.$(OBJ) zstack.$(OBJ) zstring.$(OBJ) zsysvm.$(OBJ)
  2279. Z4OPS=zrelbit zstack zstring zsysvm
  2280. Z5=ztoken.$(OBJ) ztype.$(OBJ) zvmem.$(OBJ)
  2281. Z5OPS=ztoken ztype zvmem
  2282. Z6=zchar.$(OBJ) zcolor.$(OBJ) zdevice.$(OBJ) zfont.$(OBJ) zfont2.$(OBJ)
  2283. Z6OPS=zchar zcolor zdevice zfont zfont2
  2284. Z7=zgstate.$(OBJ) zht.$(OBJ) zimage.$(OBJ) zmatrix.$(OBJ) zpaint.$(OBJ) zpath.$(OBJ)
  2285. Z7OPS=zgstate zht zimage zmatrix zpaint zpath
  2286. # We have to be a little underhanded with *config.$(OBJ) so as to avoid
  2287. # circular definitions.
  2288. INT_OBJS=imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ) \
  2289.   $(INT1) $(INT2) $(INT3) $(INT4) \
  2290.   $(Z1) $(Z2) $(Z3) $(Z4) $(Z5) $(Z6) $(Z7)
  2291. INT_CONFIG=$(gconfig).$(OBJ) $(gscdefs).$(OBJ) $(iconfig).$(OBJ) \
  2292.   iccinit$(COMPILE_INITS).$(OBJ)
  2293. INT_ALL=$(INT_OBJS) $(INT_CONFIG)
  2294. # We omit libcore.dev, which should be included here, because problems
  2295. # with the Unix linker require libcore to appear last in the link list
  2296. # when libcore is really a library.
  2297. # We omit $(INT_CONFIG) from the dependency list because they have special
  2298. # dependency requirements and are added to the link list at the very end.
  2299. # zfilter.c shouldn't include the RLE and RLD filters, but we don't want to
  2300. # change this now.
  2301. psbase.dev: $(INT_MAK) $(ECHOGS_XE) $(INT_OBJS)\
  2302.  isupport.dev rld.dev rle.dev sfile.dev
  2303.     $(SETMOD) psbase imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ)
  2304.     $(ADDMOD) psbase -obj $(INT_CONFIG)
  2305.     $(ADDMOD) psbase -obj $(INT1)
  2306.     $(ADDMOD) psbase -obj $(INT2)
  2307.     $(ADDMOD) psbase -obj $(INT3)
  2308.     $(ADDMOD) psbase -obj $(INT4)
  2309.     $(ADDMOD) psbase -obj $(Z1)
  2310.     $(ADDMOD) psbase -oper $(Z1OPS)
  2311.     $(ADDMOD) psbase -obj $(Z2)
  2312.     $(ADDMOD) psbase -oper $(Z2OPS)
  2313.     $(ADDMOD) psbase -obj $(Z3)
  2314.     $(ADDMOD) psbase -oper $(Z3OPS)
  2315.     $(ADDMOD) psbase -obj $(Z4)
  2316.     $(ADDMOD) psbase -oper $(Z4OPS)
  2317.     $(ADDMOD) psbase -obj $(Z5)
  2318.     $(ADDMOD) psbase -oper $(Z5OPS)
  2319.     $(ADDMOD) psbase -obj $(Z6)
  2320.     $(ADDMOD) psbase -oper $(Z6OPS)
  2321.     $(ADDMOD) psbase -obj $(Z7)
  2322.     $(ADDMOD) psbase -oper $(Z7OPS)
  2323.     $(ADDMOD) psbase -iodev stdin stdout stderr lineedit statementedit
  2324.     $(ADDMOD) psbase -include isupport rld rle sfile
  2325.  
  2326. # -------------------------- Feature definitions -------------------------- #
  2327.  
  2328. # ---------------- Full Level 1 interpreter ---------------- #
  2329.  
  2330. level1.dev: $(INT_MAK) $(ECHOGS_XE) psbase.dev bcp.dev hsb.dev path1.dev type1.dev
  2331.     $(SETMOD) level1 -include psbase bcp hsb path1 type1
  2332.     $(ADDMOD) level1 -emulator PostScript PostScriptLevel1
  2333.  
  2334. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  2335.  
  2336. color.dev: $(INT_MAK) $(ECHOGS_XE) cmyklib.dev colimlib.dev cmykread.dev
  2337.     $(SETMOD) color -include cmyklib colimlib cmykread
  2338.  
  2339. cmykread_=zcolor1.$(OBJ) zht1.$(OBJ)
  2340. cmykread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmykread_)
  2341.     $(SETMOD) cmykread $(cmykread_)
  2342.     $(ADDMOD) cmykread -oper zcolor1 zht1
  2343.  
  2344. zcolor1.$(OBJ): zcolor1.c $(OP) \
  2345.   $(gscolor1_h) \
  2346.   $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2347.   $(gzstate_h) \
  2348.   $(ialloc_h) $(icolor_h) $(iimage_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2349.  
  2350. zht1.$(OBJ): zht1.c $(OP) $(memory__h)\
  2351.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h)\
  2352.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2353.  
  2354. # ---------------- HSB color ---------------- #
  2355.  
  2356. hsb_=zhsb.$(OBJ)
  2357. hsb.dev: $(INT_MAK) $(ECHOGS_XE) $(hsb_) hsblib.dev
  2358.     $(SETMOD) hsb $(hsb_)
  2359.     $(ADDMOD) hsb -include hsblib
  2360.     $(ADDMOD) hsb -oper zhsb
  2361.  
  2362. zhsb.$(OBJ): zhsb.c $(OP) \
  2363.   $(gshsb_h) $(igstate_h) $(store_h)
  2364.  
  2365. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  2366.  
  2367. path1_=zpath1.$(OBJ)
  2368. path1.dev: $(INT_MAK) $(ECHOGS_XE) $(path1_) path1lib.dev
  2369.     $(SETMOD) path1 $(path1_)
  2370.     $(ADDMOD) path1 -include path1lib
  2371.     $(ADDMOD) path1 -oper zpath1
  2372.  
  2373. zpath1.$(OBJ): zpath1.c $(OP) $(memory__h)\
  2374.  $(ialloc_h) $(estack_h) $(gspath_h) $(gsstruct_h) $(igstate_h) $(store_h)
  2375.  
  2376. # ================ Level-independent PostScript options ================ #
  2377.  
  2378. # ---------------- BCP filters ---------------- #
  2379.  
  2380. bcp_=sbcp.$(OBJ) zfbcp.$(OBJ)
  2381. bcp.dev: $(INT_MAK) $(ECHOGS_XE) $(bcp_)
  2382.     $(SETMOD) bcp $(bcp_)
  2383.     $(ADDMOD) bcp -oper zfbcp
  2384.  
  2385. sbcp.$(OBJ): sbcp.c $(AK) $(stdio__h) \
  2386.   $(sfilter_h) $(strimpl_h)
  2387.  
  2388. zfbcp.$(OBJ): zfbcp.c $(OP) $(memory__h)\
  2389.  $(gsstruct_h) $(ialloc_h) $(ifilter_h)\
  2390.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2391.  
  2392. # ---------------- Incremental font loading ---------------- #
  2393. # (This only works for Type 1 fonts without eexec encryption.)
  2394.  
  2395. diskfont.dev: $(INT_MAK) $(ECHOGS_XE)
  2396.     $(SETMOD) diskfont -ps gs_diskf
  2397.  
  2398. # ---------------- Double-precision floats ---------------- #
  2399.  
  2400. double_=zdouble.$(OBJ)
  2401. double.dev: $(INT_MAK) $(ECHOGS_XE) $(double_)
  2402.     $(SETMOD) double $(double_)
  2403.     $(ADDMOD) double -oper zdouble
  2404.  
  2405. zdouble.$(OBJ): zdouble.c $(OP) $(ctype__h) $(math__h) $(memory__h) $(string__h) \
  2406.   $(gxfarith_h) $(store_h)
  2407.  
  2408. # ---------------- EPSF files with binary headers ---------------- #
  2409.  
  2410. epsf.dev: $(INT_MAK) $(ECHOGS_XE)
  2411.     $(SETMOD) epsf -ps gs_epsf
  2412.  
  2413. # ---------------- RasterOp ---------------- #
  2414. # This should be a separable feature in the core also....
  2415.  
  2416. rasterop.dev: $(INT_MAK) $(ECHOGS_XE) roplib.dev ropread.dev
  2417.     $(SETMOD) rasterop -include roplib ropread
  2418.  
  2419. ropread_=zrop.$(OBJ)
  2420. ropread.dev: $(INT_MAK) $(ECHOGS_XE) $(ropread_)
  2421.     $(SETMOD) ropread $(ropread_)
  2422.     $(ADDMOD) ropread -oper zrop
  2423.  
  2424. zrop.$(OBJ): zrop.c $(OP) $(memory__h)\
  2425.  $(gsrop_h) $(gsutil_h) $(gxdevice_h)\
  2426.  $(idict_h) $(idparam_h) $(igstate_h) $(store_h)
  2427.  
  2428. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  2429.  
  2430. type1.dev: $(INT_MAK) $(ECHOGS_XE) psf1lib.dev psf1read.dev
  2431.     $(SETMOD) type1 -include psf1lib psf1read
  2432.  
  2433. psf1read_=seexec.$(OBJ) zchar1.$(OBJ) zcharout.$(OBJ) zfont1.$(OBJ) zmisc1.$(OBJ)
  2434. psf1read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf1read_)
  2435.     $(SETMOD) psf1read $(psf1read_)
  2436.     $(ADDMOD) psf1read -oper zchar1 zfont1 zmisc1
  2437.     $(ADDMOD) psf1read -ps gs_type1
  2438.  
  2439. seexec.$(OBJ): seexec.c $(AK) $(stdio__h) \
  2440.   $(gscrypt1_h) $(scanchar_h) $(sfilter_h) $(strimpl_h)
  2441.  
  2442. zchar1.$(OBJ): zchar1.c $(OP) \
  2443.   $(gspaint_h) $(gspath_h) $(gsstruct_h) \
  2444.   $(gxchar_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2445.   $(gxfont_h) $(gxfont1_h) $(gxtype1_h) $(gzstate_h) \
  2446.   $(estack_h) $(ialloc_h) $(ichar_h) $(icharout_h) \
  2447.   $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2448.  
  2449. zfont1.$(OBJ): zfont1.c $(OP) \
  2450.   $(gsmatrix_h) $(gxdevice_h) $(gschar_h) \
  2451.   $(gxfixed_h) $(gxfont_h) $(gxfont1_h) \
  2452.   $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(store_h)
  2453.  
  2454. zmisc1.$(OBJ): zmisc1.c $(OP) $(memory__h)\
  2455.  $(gscrypt1_h)\
  2456.  $(idict_h) $(idparam_h) $(ifilter_h)\
  2457.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2458.  
  2459. # -------------- Compact Font Format and Type 2 charstrings ------------- #
  2460.  
  2461. cff.dev: $(INT_MAK) $(ECHOGS_XE) gs_cff.ps psl2int.dev
  2462.     $(SETMOD) cff -ps gs_cff
  2463.  
  2464. type2.dev: $(INT_MAK) $(ECHOGS_XE) type1.dev psf2lib.dev
  2465.     $(SETMOD) type2 -include psf2lib
  2466.  
  2467. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  2468.  
  2469. # Native TrueType support
  2470. ttfont.dev: $(INT_MAK) $(ECHOGS_XE) type42.dev
  2471.     $(SETMOD) ttfont -include type42
  2472.     $(ADDMOD) ttfont -ps gs_mro_e gs_wan_e gs_ttf
  2473.  
  2474. # Type 42 (embedded TrueType) support
  2475. type42read_=zchar42.$(OBJ) zcharout.$(OBJ) zfont42.$(OBJ)
  2476. type42.dev: $(INT_MAK) $(ECHOGS_XE) $(type42read_) ttflib.dev
  2477.     $(SETMOD) type42 $(type42read_)
  2478.     $(ADDMOD) type42 -include ttflib    
  2479.     $(ADDMOD) type42 -oper zchar42 zfont42
  2480.     $(ADDMOD) type42 -ps gs_typ42
  2481.  
  2482. zchar42.$(OBJ): zchar42.c $(OP) \
  2483.   $(gsmatrix_h) $(gspaint_h) $(gspath_h) \
  2484.   $(gxfixed_h) $(gxchar_h) $(gxfont_h) $(gxfont42_h) \
  2485.   $(gxistate_h) $(gxpath_h) $(gzstate_h) \
  2486.   $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h) \
  2487.   $(ifont_h) $(igstate_h) $(store_h)
  2488.  
  2489. zfont42.$(OBJ): zfont42.c $(OP) \
  2490.   $(gsccode_h) $(gsmatrix_h) $(gxfont_h) $(gxfont42_h) \
  2491.   $(bfont_h) $(idict_h) $(idparam_h) $(store_h)
  2492.  
  2493. # ======================== Precompilation options ======================== #
  2494.  
  2495. # ---------------- Precompiled fonts ---------------- #
  2496. # See fonts.txt for more information.
  2497.  
  2498. ccfont_h=ccfont.h $(std_h) $(gsmemory_h) $(iref_h) $(ivmspace_h) $(store_h)
  2499.  
  2500. CCFONT=$(OP) $(ccfont_h)
  2501.  
  2502. # List the fonts we are going to compile.
  2503. # Because of intrinsic limitations in `make', we have to list
  2504. # the object file names and the font names separately.
  2505. # Because of limitations in the DOS shell, we have to break the fonts up
  2506. # into lists that will fit on a single line (120 characters).
  2507. # The rules for constructing the .c files from the fonts themselves,
  2508. # and for compiling the .c files, are in cfonts.mak, not here.
  2509. # For example, to compile the Courier fonts, you should invoke
  2510. #    make -f cfonts.mak Courier_o
  2511. # By convention, the names of the 35 standard compiled fonts use '0' for
  2512. # the foundry name.  This allows users to substitute different foundries
  2513. # without having to change this makefile.
  2514. ccfonts_ps=gs_ccfnt
  2515. ccfonts1_=0agk.$(OBJ) 0agko.$(OBJ) 0agd.$(OBJ) 0agdo.$(OBJ)
  2516. ccfonts1=agk agko agd agdo
  2517. ccfonts2_=0bkl.$(OBJ) 0bkli.$(OBJ) 0bkd.$(OBJ) 0bkdi.$(OBJ)
  2518. ccfonts2=bkl bkli bkd bkdi
  2519. ccfonts3_=0crr.$(OBJ) 0cri.$(OBJ) 0crb.$(OBJ) 0crbi.$(OBJ)
  2520. ccfonts3=crr cri crb crbi
  2521. ccfonts4_=0hvr.$(OBJ) 0hvro.$(OBJ) 0hvb.$(OBJ) 0hvbo.$(OBJ)
  2522. ccfonts4=hvr hvro hvb hvbo
  2523. ccfonts5_=0hvrrn.$(OBJ) 0hvrorn.$(OBJ) 0hvbrn.$(OBJ) 0hvborn.$(OBJ)
  2524. ccfonts5=hvrrn hvrorn hvbrn hvborn
  2525. ccfonts6_=0ncr.$(OBJ) 0ncri.$(OBJ) 0ncb.$(OBJ) 0ncbi.$(OBJ)
  2526. ccfonts6=ncr ncri ncb ncbi
  2527. ccfonts7_=0plr.$(OBJ) 0plri.$(OBJ) 0plb.$(OBJ) 0plbi.$(OBJ)
  2528. ccfonts7=plr plri plb plbi
  2529. ccfonts8_=0tmr.$(OBJ) 0tmri.$(OBJ) 0tmb.$(OBJ) 0tmbi.$(OBJ)
  2530. ccfonts8=tmr tmri tmb tmbi
  2531. ccfonts9_=0syr.$(OBJ) 0zcmi.$(OBJ) 0zdr.$(OBJ)
  2532. ccfonts9=syr zcmi zdr
  2533. # The free distribution includes Bitstream Charter, Utopia, and
  2534. # freeware Cyrillic and Kana fonts.  We only provide for compiling
  2535. # Charter and Utopia.
  2536. ccfonts10free_=bchr.$(OBJ) bchri.$(OBJ) bchb.$(OBJ) bchbi.$(OBJ)
  2537. ccfonts10free=chr chri chb chbi
  2538. ccfonts11free_=putr.$(OBJ) putri.$(OBJ) putb.$(OBJ) putbi.$(OBJ)
  2539. ccfonts11free=utr utri utb utbi
  2540. # Uncomment the alternatives in the next 4 lines if you want
  2541. # Charter and Utopia compiled in.
  2542. #ccfonts10_=$(ccfonts10free_)
  2543. ccfonts10_=
  2544. #ccfonts10=$(ccfonts10free)
  2545. ccfonts10=
  2546. #ccfonts11_=$(ccfonts11free_)
  2547. ccfonts11_=
  2548. #ccfonts11=$(ccfonts11free)
  2549. ccfonts11=
  2550. # Add your own fonts here if desired.
  2551. ccfonts12_=
  2552. ccfonts12=
  2553. ccfonts13_=
  2554. ccfonts13=
  2555. ccfonts14_=
  2556. ccfonts14=
  2557. ccfonts15_=
  2558. ccfonts15=
  2559.  
  2560. # It's OK for ccfonts_.dev not to be CONFIG-dependent, because it only
  2561. # exists during the execution of the following rule.
  2562. # font2c has the prefix "gs" built into it, so we need to instruct
  2563. # genconf to use the same one.
  2564. $(gconfigf_h): $(MAKEFILE) $(INT_MAK) $(GENCONF_XE)
  2565.     $(SETMOD) ccfonts_ -font $(ccfonts1)
  2566.     $(ADDMOD) ccfonts_ -font $(ccfonts2)
  2567.     $(ADDMOD) ccfonts_ -font $(ccfonts3)
  2568.     $(ADDMOD) ccfonts_ -font $(ccfonts4)
  2569.     $(ADDMOD) ccfonts_ -font $(ccfonts5)
  2570.     $(ADDMOD) ccfonts_ -font $(ccfonts6)
  2571.     $(ADDMOD) ccfonts_ -font $(ccfonts7)
  2572.     $(ADDMOD) ccfonts_ -font $(ccfonts8)
  2573.     $(ADDMOD) ccfonts_ -font $(ccfonts9)
  2574.     $(ADDMOD) ccfonts_ -font $(ccfonts10)
  2575.     $(ADDMOD) ccfonts_ -font $(ccfonts11)
  2576.     $(ADDMOD) ccfonts_ -font $(ccfonts12)
  2577.     $(ADDMOD) ccfonts_ -font $(ccfonts13)
  2578.     $(ADDMOD) ccfonts_ -font $(ccfonts14)
  2579.     $(ADDMOD) ccfonts_ -font $(ccfonts15)
  2580.     $(EXP)genconf ccfonts_.dev -n gs -f $(gconfigf_h)
  2581.  
  2582. # We separate icfontab.dev from ccfonts.dev so that a customer can put
  2583. # compiled fonts into a separate shared library.
  2584.  
  2585. icfontab=icfontab$(CONFIG)
  2586.  
  2587. # Define ccfont_table separately, so it can be set from the command line
  2588. # to select an alternate compiled font table.
  2589. ccfont_table=$(icfontab)
  2590.  
  2591. $(icfontab).dev: $(MAKEFILE) $(INT_MAK) $(ECHOGS_XE) $(icfontab).$(OBJ) \
  2592.   $(ccfonts1_) $(ccfonts2_) $(ccfonts3_) $(ccfonts4_) $(ccfonts5_) \
  2593.   $(ccfonts6_) $(ccfonts7_) $(ccfonts8_) $(ccfonts9_) $(ccfonts10_) \
  2594.   $(ccfonts11_) $(ccfonts12_) $(ccfonts13_) $(ccfonts14_) $(ccfonts15_)
  2595.     $(SETMOD) $(icfontab) -obj $(icfontab).$(OBJ)
  2596.     $(ADDMOD) $(icfontab) -obj $(ccfonts1_)
  2597.     $(ADDMOD) $(icfontab) -obj $(ccfonts2_)
  2598.     $(ADDMOD) $(icfontab) -obj $(ccfonts3_)
  2599.     $(ADDMOD) $(icfontab) -obj $(ccfonts4_)
  2600.     $(ADDMOD) $(icfontab) -obj $(ccfonts5_)
  2601.     $(ADDMOD) $(icfontab) -obj $(ccfonts6_)
  2602.     $(ADDMOD) $(icfontab) -obj $(ccfonts7_)
  2603.     $(ADDMOD) $(icfontab) -obj $(ccfonts8_)
  2604.     $(ADDMOD) $(icfontab) -obj $(ccfonts9_)
  2605.     $(ADDMOD) $(icfontab) -obj $(ccfonts10_)
  2606.     $(ADDMOD) $(icfontab) -obj $(ccfonts11_)
  2607.     $(ADDMOD) $(icfontab) -obj $(ccfonts12_)
  2608.     $(ADDMOD) $(icfontab) -obj $(ccfonts13_)
  2609.     $(ADDMOD) $(icfontab) -obj $(ccfonts14_)
  2610.     $(ADDMOD) $(icfontab) -obj $(ccfonts15_)
  2611.  
  2612. $(icfontab).$(OBJ): icfontab.c $(AK) $(ccfont_h) $(gconfigf_h)
  2613.     $(CP_) $(gconfigf_h) gconfigf.h
  2614.     $(CCCF) icfontab.c
  2615.  
  2616. # Strictly speaking, ccfonts shouldn't need to include type1,
  2617. # since one could choose to precompile only Type 0 fonts,
  2618. # but getting this exactly right would be too much work.
  2619. ccfonts=ccfonts$(CONFIG)
  2620. $(ccfonts).dev: $(MAKEFILE) $(INT_MAK) type1.dev iccfont.$(OBJ) \
  2621.   $(ccfont_table).dev
  2622.     $(SETMOD) $(ccfonts) -include type1
  2623.     $(ADDMOD) $(ccfonts) -include $(ccfont_table)
  2624.     $(ADDMOD) $(ccfonts) -obj iccfont.$(OBJ)
  2625.     $(ADDMOD) $(ccfonts) -oper ccfonts
  2626.     $(ADDMOD) $(ccfonts) -ps $(ccfonts_ps)
  2627.  
  2628. iccfont.$(OBJ): iccfont.c $(GH) $(string__h)\
  2629.  $(gsstruct_h) $(ccfont_h) $(errors_h)\
  2630.  $(ialloc_h) $(idict_h) $(ifont_h) $(iname_h) $(isave_h) $(iutil_h)\
  2631.  $(oper_h) $(ostack_h) $(store_h) $(stream_h) $(strimpl_h) $(sfilter_h) $(iscan_h)
  2632.     $(CCCF) iccfont.c
  2633.  
  2634. # ---------------- Compiled initialization code ---------------- #
  2635.  
  2636. # We select either iccinit0 or iccinit1 depending on COMPILE_INITS.
  2637.  
  2638. iccinit0.$(OBJ): iccinit0.c $(stdpre_h)
  2639.     $(CCCF) iccinit0.c
  2640.  
  2641. iccinit1.$(OBJ): gs_init.$(OBJ)
  2642.     $(CP_) gs_init.$(OBJ) iccinit1.$(OBJ)
  2643.  
  2644. # All the gs_*.ps files should be prerequisites of gs_init.c,
  2645. # but we don't have any convenient list of them.
  2646. gs_init.c: $(GS_INIT) $(GENINIT_XE) $(gconfig_h)
  2647.     $(EXP)geninit $(GS_INIT) $(gconfig_h) -c gs_init.c
  2648.  
  2649. gs_init.$(OBJ): gs_init.c $(stdpre_h)
  2650.     $(CCCF) gs_init.c
  2651.  
  2652. # ======================== PostScript Level 2 ======================== #
  2653.  
  2654. ### In addition to the true Level 2 configuration, we define a 'minimal'
  2655. ### Level 2 that can be used with -dDEBUG in the 16-bit Windows environment.
  2656. ### This also may require trimming down the sizes of the stacks in interp.c.
  2657.  
  2658. lev2min.dev: $(INT_MAK) $(ECHOGS_XE) \
  2659.   psbase.dev devctrl.dev color.dev \
  2660.   dps2lib.dev dps2read.dev fdecode.dev path1.dev type1.dev \
  2661.   psl2lib.dev psl2read.dev
  2662.     $(SETMOD) lev2min -include psbase devctrl color
  2663.     $(ADDMOD) lev2min -include dps2lib dps2read fdecode path1 type1
  2664.     $(ADDMOD) lev2min -include psl2lib psl2read
  2665.     $(ADDMOD) lev2min -emulator PostScript PostScriptLevel1 PostScriptLevel2
  2666.  
  2667. level2.dev: $(INT_MAK) $(ECHOGS_XE) \
  2668.  cidfont.dev cie.dev cmapread.dev compfont.dev dct.dev devctrl.dev dpsand2.dev\
  2669.  filter.dev level1.dev pattern.dev psl2lib.dev psl2read.dev sepr.dev\
  2670.  type42.dev xfilter.dev
  2671.     $(SETMOD) level2 -include cidfont cie cmapread compfont
  2672.     $(ADDMOD) level2 -include dct devctrl dpsand2 filter
  2673.     $(ADDMOD) level2 -include level1 pattern psl2lib psl2read
  2674.     $(ADDMOD) level2 -include sepr type42 xfilter
  2675.     $(ADDMOD) level2 -emulator PostScript PostScriptLevel2
  2676.  
  2677. # Define basic Level 2 language support.
  2678. # This is the minimum required for CMap and CIDFont support.
  2679.  
  2680. psl2int_=iutil2.$(OBJ) zmisc2.$(OBJ) zusparam.$(OBJ)
  2681. psl2int.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2int_) dps2int.dev
  2682.     $(SETMOD) psl2int $(psl2int_)
  2683.     $(ADDMOD) psl2int -include dps2int
  2684.     $(ADDMOD) psl2int -oper zmisc2 zusparam
  2685.     $(ADDMOD) psl2int -ps gs_lev2 gs_res
  2686.  
  2687. iutil2.$(OBJ): iutil2.c $(GH) $(memory__h) $(string__h)\
  2688.  $(gsparam_h) $(gsutil_h)\
  2689.  $(errors_h) $(opcheck_h) $(imemory_h) $(iutil_h) $(iutil2_h)
  2690.  
  2691. zmisc2.$(OBJ): zmisc2.c $(OP) $(memory__h) $(string__h)\
  2692.  $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2693.  $(ilevel_h) $(iname_h) $(iutil2_h) $(ivmspace_h) $(store_h)
  2694.  
  2695. # Note that zusparam includes both Level 1 and Level 2 operators.
  2696. zusparam.$(OBJ): zusparam.c $(OP) $(memory__h) $(string__h)\
  2697.  $(gscdefs_h) $(gsfont_h) $(gsstruct_h) $(gsutil_h) $(gxht_h)\
  2698.  $(ialloc_h) $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2699.  $(iname_h) $(iutil2_h) $(store_h)
  2700.  
  2701. # Define full Level 2 support.
  2702.  
  2703. psl2read_=zcolor2.$(OBJ) zcsindex.$(OBJ) zht2.$(OBJ) zimage2.$(OBJ)
  2704. # Note that zmisc2 includes both Level 1 and Level 2 operators.
  2705. psl2read.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2read_) psl2int.dev dps2read.dev
  2706.     $(SETMOD) psl2read $(psl2read_)
  2707.     $(ADDMOD) psl2read -include psl2int dps2read
  2708.     $(ADDMOD) psl2read -oper zcolor2_l2 zcsindex_l2
  2709.     $(ADDMOD) psl2read -oper zht2_l2 zimage2_l2
  2710.  
  2711. zcolor2.$(OBJ): zcolor2.c $(OP)\
  2712.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2713.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxpcolor_h)\
  2714.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2715.  $(store_h)
  2716.  
  2717. zcsindex.$(OBJ): zcsindex.c $(OP) $(memory__h) \
  2718.   $(gscolor_h) $(gsstruct_h) $(gxfixed_h) $(gxcolor2_h) $(gxcspace_h) $(gsmatrix_h) \
  2719.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2720.  
  2721. zht2.$(OBJ): zht2.c $(OP) \
  2722.   $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2723.   $(estack_h) $(ialloc_h) $(icolor_h) $(idict_h) $(idparam_h) $(igstate_h) \
  2724.   $(iht_h) $(store_h)
  2725.  
  2726. zimage2.$(OBJ): zimage2.c $(OP) $(math__h) $(memory__h)\
  2727.  $(gscolor_h) $(gscolor2_h) $(gscspace_h) $(gsimage_h) $(gsmatrix_h)\
  2728.  $(idict_h) $(idparam_h) $(iimage_h) $(ilevel_h) $(igstate_h)
  2729.  
  2730. # ---------------- Device control ---------------- #
  2731. # This is a catch-all for setpagedevice and IODevices.
  2732.  
  2733. devctrl_=zdevice2.$(OBJ) ziodev2.$(OBJ) zmedia2.$(OBJ) zdevcal.$(OBJ)
  2734. devctrl.dev: $(INT_MAK) $(ECHOGS_XE) $(devctrl_)
  2735.     $(SETMOD) devctrl $(devctrl_)
  2736.     $(ADDMOD) devctrl -oper zdevice2_l2 ziodev2_l2 zmedia2_l2
  2737.     $(ADDMOD) devctrl -iodev null ram calendar
  2738.     $(ADDMOD) devctrl -ps gs_setpd
  2739.  
  2740. zdevice2.$(OBJ): zdevice2.c $(OP) $(math__h) $(memory__h)\
  2741.  $(dstack_h) $(estack_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h) $(store_h)\
  2742.  $(gxdevice_h) $(gsstate_h)
  2743.  
  2744. ziodev2.$(OBJ): ziodev2.c $(OP) $(string__h) $(gp_h)\
  2745.  $(gxiodev_h) $(stream_h) $(files_h) $(iparam_h) $(iutil2_h) $(store_h)
  2746.  
  2747. zmedia2.$(OBJ): zmedia2.c $(OP) $(math__h) $(memory__h) \
  2748.   $(gsmatrix_h) $(idict_h) $(idparam_h) $(iname_h) $(store_h)
  2749.  
  2750. zdevcal.$(OBJ): zdevcal.c $(GH) $(time__h) \
  2751.   $(gxiodev_h) $(iparam_h) $(istack_h)
  2752.  
  2753. # ---------------- Filters other than the ones in sfilter.c ---------------- #
  2754.  
  2755. # Standard Level 2 decoding filters only.  The PDF configuration uses this.
  2756. fdecode_=scantab.$(OBJ) sfilter2.$(OBJ) zfdecode.$(OBJ)
  2757. fdecode.dev: $(INT_MAK) $(ECHOGS_XE) $(fdecode_) cfd.dev lzwd.dev pdiff.dev pngp.dev rld.dev
  2758.     $(SETMOD) fdecode $(fdecode_)
  2759.     $(ADDMOD) fdecode -include cfd lzwd pdiff pngp rld
  2760.     $(ADDMOD) fdecode -oper zfdecode
  2761.  
  2762. zfdecode.$(OBJ): zfdecode.c $(OP) $(memory__h)\
  2763.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2764.  $(sa85x_h) $(scf_h) $(scfx_h) $(sfilter_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) \
  2765.  $(store_h) $(stream_h) $(strimpl_h)
  2766.  
  2767. # Complete Level 2 filter capability.
  2768. filter_=zfilter2.$(OBJ)
  2769. filter.dev: $(INT_MAK) $(ECHOGS_XE) fdecode.dev $(filter_) cfe.dev lzwe.dev rle.dev
  2770.     $(SETMOD) filter -include fdecode
  2771.     $(ADDMOD) filter -obj $(filter_)
  2772.     $(ADDMOD) filter -include cfe lzwe rle
  2773.     $(ADDMOD) filter -oper zfilter2
  2774.  
  2775. zfilter2.$(OBJ): zfilter2.c $(OP) $(memory__h)\
  2776.   $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) $(store_h) \
  2777.   $(sfilter_h) $(scfx_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) $(strimpl_h)
  2778.  
  2779. # Extensions beyond Level 2 standard.
  2780. xfilter_=sbhc.$(OBJ) sbwbs.$(OBJ) shcgen.$(OBJ) smtf.$(OBJ) \
  2781.  zfilterx.$(OBJ)
  2782. xfilter.dev: $(INT_MAK) $(ECHOGS_XE) $(xfilter_) pcxd.dev pngp.dev
  2783.     $(SETMOD) xfilter $(xfilter_)
  2784.     $(ADDMOD) xfilter -include pcxd
  2785.     $(ADDMOD) xfilter -oper zfilterx
  2786.  
  2787. sbhc.$(OBJ): sbhc.c $(AK) $(memory__h) $(stdio__h)\
  2788.  $(gdebug_h) $(sbhc_h) $(shcgen_h) $(strimpl_h)
  2789.  
  2790. sbwbs.$(OBJ): sbwbs.c $(AK) $(stdio__h) $(memory__h) \
  2791.   $(gdebug_h) $(sbwbs_h) $(sfilter_h) $(strimpl_h)
  2792.  
  2793. shcgen.$(OBJ): shcgen.c $(AK) $(memory__h) $(stdio__h)\
  2794.  $(gdebug_h) $(gserror_h) $(gserrors_h) $(gsmemory_h)\
  2795.  $(scommon_h) $(shc_h) $(shcgen_h)
  2796.  
  2797. smtf.$(OBJ): smtf.c $(AK) $(stdio__h) \
  2798.   $(smtf_h) $(strimpl_h)
  2799.  
  2800. zfilterx.$(OBJ): zfilterx.c $(OP) $(memory__h)\
  2801.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h)\
  2802.  $(store_h) $(sfilter_h) $(sbhc_h) $(sbtx_h) $(sbwbs_h) $(shcgen_h)\
  2803.  $(smtf_h) $(spcxx_h) $(strimpl_h)
  2804.  
  2805. # ---------------- Binary tokens ---------------- #
  2806.  
  2807. btoken_=iscanbin.$(OBJ) zbseq.$(OBJ)
  2808. btoken.dev: $(INT_MAK) $(ECHOGS_XE) $(btoken_)
  2809.     $(SETMOD) btoken $(btoken_)
  2810.     $(ADDMOD) btoken -oper zbseq_l2
  2811.     $(ADDMOD) btoken -ps gs_btokn
  2812.  
  2813. bseq_h=bseq.h
  2814. btoken_h=btoken.h
  2815.  
  2816. iscanbin.$(OBJ): iscanbin.c $(GH) $(math__h) $(memory__h) $(errors_h)\
  2817.  $(gsutil_h) $(ialloc_h) $(ibnum_h) $(idict_h) $(iname_h)\
  2818.  $(iscan_h) $(iutil_h) $(ivmspace_h)\
  2819.  $(bseq_h) $(btoken_h) $(dstack_h) $(ostack_h)\
  2820.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2821.  
  2822. zbseq.$(OBJ): zbseq.c $(OP) $(memory__h)\
  2823.  $(ialloc_h) $(idict_h) $(isave_h)\
  2824.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)\
  2825.  $(iname_h) $(ibnum_h) $(btoken_h) $(bseq_h)
  2826.  
  2827. # ---------------- User paths & insideness testing ---------------- #
  2828.  
  2829. upath_=zupath.$(OBJ) ibnum.$(OBJ)
  2830. upath.dev: $(INT_MAK) $(ECHOGS_XE) $(upath_)
  2831.     $(SETMOD) upath $(upath_)
  2832.     $(ADDMOD) upath -oper zupath_l2
  2833.  
  2834. zupath.$(OBJ): zupath.c $(OP) \
  2835.   $(idict_h) $(dstack_h) $(iutil_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h) \
  2836.   $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstate_h) \
  2837.   $(gxfixed_h) $(gxdevice_h) $(gzpath_h) $(gzstate_h)
  2838.  
  2839. # -------- Additions common to Display PostScript and Level 2 -------- #
  2840.  
  2841. dpsand2.dev: $(INT_MAK) $(ECHOGS_XE) btoken.dev color.dev upath.dev dps2lib.dev dps2read.dev
  2842.     $(SETMOD) dpsand2 -include btoken color upath dps2lib dps2read
  2843.  
  2844. dps2int_=zvmem2.$(OBJ) zdps1.$(OBJ)
  2845. # Note that zvmem2 includes both Level 1 and Level 2 operators.
  2846. dps2int.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2int_)
  2847.     $(SETMOD) dps2int $(dps2int_)
  2848.     $(ADDMOD) dps2int -oper zvmem2 zdps1_l2
  2849.     $(ADDMOD) dps2int -ps gs_dps1
  2850.  
  2851. dps2read_=ibnum.$(OBJ) zchar2.$(OBJ)
  2852. dps2read.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2read_) dps2int.dev
  2853.     $(SETMOD) dps2read $(dps2read_)
  2854.     $(ADDMOD) dps2read -include dps2int
  2855.     $(ADDMOD) dps2read -oper ireclaim_l2 zchar2_l2
  2856.     $(ADDMOD) dps2read -ps gs_dps2
  2857.  
  2858. ibnum.$(OBJ): ibnum.c $(GH) $(math__h) $(memory__h)\
  2859.  $(errors_h) $(stream_h) $(ibnum_h) $(imemory_h) $(iutil_h)
  2860.  
  2861. zchar2.$(OBJ): zchar2.c $(OP)\
  2862.  $(gschar_h) $(gsmatrix_h) $(gspath_h) $(gsstruct_h)\
  2863.  $(gxchar_h) $(gxfixed_h) $(gxfont_h)\
  2864.  $(ialloc_h) $(ichar_h) $(estack_h) $(ifont_h) $(iname_h) $(igstate_h)\
  2865.  $(store_h) $(stream_h) $(ibnum_h)
  2866.  
  2867. zdps1.$(OBJ): zdps1.c $(OP) \
  2868.   $(gsmatrix_h) $(gspath_h) $(gspath2_h) $(gsstate_h) \
  2869.   $(ialloc_h) $(ivmspace_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h)
  2870.  
  2871. zvmem2.$(OBJ): zvmem2.c $(OP) \
  2872.   $(estack_h) $(ialloc_h) $(ivmspace_h) $(store_h)
  2873.  
  2874. # ---------------- Display PostScript ---------------- #
  2875.  
  2876. # The context machinery is NOT USABLE in this release.  DO NOT USE IT.
  2877. # IT WILL CAUSE AN IMMEDIATE CRASH.
  2878. #dps_=zdps.$(OBJ) zcontext.$(OBJ)
  2879. dps_=zdps.$(OBJ)
  2880. # Note that zcontext is omitted from the -oper list below.
  2881. dps.dev: $(INT_MAK) $(ECHOGS_XE) level2.dev $(dps_)
  2882.     $(SETMOD) dps -include level2
  2883.     $(ADDMOD) dps -obj $(dps_)
  2884.     $(ADDMOD) dps -oper zdps
  2885.     $(ADDMOD) dps -ps gs_dps
  2886.  
  2887. zdps.$(OBJ): zdps.c $(OP)\
  2888.  $(gsstate_h) $(igstate_h) $(iname_h) $(store_h)
  2889.  
  2890. zcontext.$(OBJ): zcontext.c $(OP) $(gp_h) $(memory__h)\
  2891.  $(gsexit_h) $(gsstruct_h) $(gsutil_h) $(gxalloc_h)\
  2892.  $(icontext_h) $(idict_h) $(igstate_h) $(istruct_h)\
  2893.  $(dstack_h) $(estack_h) $(ostack_h) $(store_h)
  2894.  
  2895. # ---------------- NeXT Display PostScript ---------------- #
  2896. #**************** NOT READY FOR USE YET ****************#
  2897.  
  2898. dpsnext_=zdpnext.$(OBJ)
  2899. dpsnext.dev: $(INT_MAK) $(ECHOGS_XE) dps.dev $(dpsnext_) gs_dpnxt.ps
  2900.     $(SETMOD) dpsnext -include dps
  2901.     $(ADDMOD) dpsnext -obj $(dpsnext_)
  2902.     $(ADDMOD) dpsnext -oper zdpnext
  2903.     $(ADDMOD) dpsnext -ps gs_dpnxt
  2904.  
  2905. zdpnext.$(OBJ): zdpnext.c $(OP)\
  2906.  $(gscspace_h) $(gsiparam_h) $(gsmatrix_h) $(gxcvalue_h) $(gxsample_h)\
  2907.  $(ialloc_h) $(igstate_h) $(iimage_h)
  2908.  
  2909. # -------- Composite (PostScript Type 0) font support -------- #
  2910.  
  2911. compfont.dev: $(INT_MAK) $(ECHOGS_XE) psf0lib.dev psf0read.dev
  2912.     $(SETMOD) compfont -include psf0lib psf0read
  2913.  
  2914. # We always include zfcmap.$(OBJ) because zfont0.c refers to it,
  2915. # and it's not worth the trouble to exclude.
  2916. psf0read_=zchar2.$(OBJ) zfcmap.$(OBJ) zfont0.$(OBJ)
  2917. psf0read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf0read_)
  2918.     $(SETMOD) psf0read $(psf0read_)
  2919.     $(ADDMOD) psf0read -oper zfont0 zchar2 zfcmap
  2920.  
  2921. zfcmap.$(OBJ): zfcmap.c $(OP)\
  2922.  $(gsmatrix_h) $(gsstruct_h) $(gsutil_h)\
  2923.  $(gxfcmap_h) $(gxfont_h)\
  2924.  $(ialloc_h) $(idict_h) $(idparam_h) $(ifont_h) $(iname_h) $(store_h)
  2925.  
  2926. zfont0.$(OBJ): zfont0.c $(OP)\
  2927.  $(gschar_h) $(gsstruct_h)\
  2928.  $(gxdevice_h) $(gxfcmap_h) $(gxfixed_h) $(gxfont_h) $(gxfont0_h) $(gxmatrix_h)\
  2929.  $(gzstate_h)\
  2930.  $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h)\
  2931.  $(store_h)
  2932.  
  2933. # ---------------- CMap support ---------------- #
  2934. # Note that this requires at least minimal Level 2 support,
  2935. # because it requires findresource.
  2936.  
  2937. cmapread_=zfcmap.$(OBJ)
  2938. cmapread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmapread_) cmaplib.dev psl2int.dev
  2939.     $(SETMOD) cmapread $(cmapread_)
  2940.     $(ADDMOD) cmapread -include cmaplib psl2int
  2941.     $(ADDMOD) cmapread -oper zfcmap
  2942.     $(ADDMOD) cmapread -ps gs_cmap
  2943.  
  2944. # ---------------- CIDFont support ---------------- #
  2945. # Note that this requires at least minimal Level 2 support,
  2946. # because it requires findresource.
  2947.  
  2948. cidread_=zcid.$(OBJ)
  2949. cidfont.dev: $(INT_MAK) $(ECHOGS_XE) psf1read.dev psl2int.dev type42.dev\
  2950.  $(cidread_)
  2951.     $(SETMOD) cidfont $(cidread_)
  2952.     $(ADDMOD) cidfont -include psf1read psl2int type42
  2953.     $(ADDMOD) cidfont -ps gs_cidfn
  2954.     $(ADDMOD) cidfont -oper zcid
  2955.  
  2956. zcid.$(OBJ): zcid.c $(OP)\
  2957.  $(gsccode_h) $(gsmatrix_h) $(gxfont_h)\
  2958.  $(bfont_h) $(iname_h) $(store_h)
  2959.  
  2960. # ---------------- CIE color ---------------- #
  2961.  
  2962. cieread_=zcie.$(OBJ) zcrd.$(OBJ)
  2963. cie.dev: $(INT_MAK) $(ECHOGS_XE) $(cieread_) cielib.dev
  2964.     $(SETMOD) cie $(cieread_)
  2965.     $(ADDMOD) cie -oper zcie_l2 zcrd_l2
  2966.     $(ADDMOD) cie -include cielib
  2967.  
  2968. icie_h=icie.h
  2969.  
  2970. zcie.$(OBJ): zcie.c $(OP) $(math__h) $(memory__h) \
  2971.   $(gscolor2_h) $(gscie_h) $(gsstruct_h) $(gxcspace_h) \
  2972.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2973.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2974.  
  2975. zcrd.$(OBJ): zcrd.c $(OP) $(math__h) \
  2976.   $(gscspace_h) $(gscolor2_h) $(gscie_h) $(gsstruct_h) \
  2977.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2978.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2979.  
  2980. # ---------------- Pattern color ---------------- #
  2981.  
  2982. pattern.dev: $(INT_MAK) $(ECHOGS_XE) patlib.dev patread.dev
  2983.     $(SETMOD) pattern -include patlib patread
  2984.  
  2985. patread_=zpcolor.$(OBJ)
  2986. patread.dev: $(INT_MAK) $(ECHOGS_XE) $(patread_)
  2987.     $(SETMOD) patread $(patread_)
  2988.     $(ADDMOD) patread -oper zpcolor_l2
  2989.  
  2990. zpcolor.$(OBJ): zpcolor.c $(OP)\
  2991.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2992.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  2993.    $(gxfixed_h) $(gxpcolor_h)\
  2994.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2995.  $(store_h)
  2996.  
  2997. # ---------------- Separation color ---------------- #
  2998.  
  2999. seprread_=zcssepr.$(OBJ)
  3000. sepr.dev: $(INT_MAK) $(ECHOGS_XE) $(seprread_) seprlib.dev
  3001.     $(SETMOD) sepr $(seprread_)
  3002.     $(ADDMOD) sepr -oper zcssepr_l2
  3003.     $(ADDMOD) sepr -include seprlib
  3004.  
  3005. zcssepr.$(OBJ): zcssepr.c $(OP) \
  3006.   $(gscolor_h) $(gscsepr_h) $(gsmatrix_h) $(gsstruct_h) \
  3007.   $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) \
  3008.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3009.  
  3010. # ---------------- DCT filters ---------------- #
  3011. # The definitions for jpeg*.dev are in jpeg.mak.
  3012.  
  3013. dct.dev: $(INT_MAK) $(ECHOGS_XE) dcte.dev dctd.dev
  3014.     $(SETMOD) dct -include dcte dctd
  3015.  
  3016. # Common code
  3017.  
  3018. dctc_=zfdctc.$(OBJ)
  3019.  
  3020. zfdctc.$(OBJ): zfdctc.c $(GH) $(memory__h) $(stdio__h)\
  3021.  $(errors_h) $(opcheck_h)\
  3022.  $(idict_h) $(idparam_h) $(imemory_h) $(ipacked_h) $(iutil_h)\
  3023.  $(sdct_h) $(sjpeg_h) $(strimpl_h)\
  3024.  jpeglib.h
  3025.  
  3026. # Encoding (compression)
  3027.  
  3028. dcte_=$(dctc_) zfdcte.$(OBJ)
  3029. dcte.dev: $(INT_MAK) $(ECHOGS_XE) sdcte.dev $(dcte_)
  3030.     $(SETMOD) dcte -include sdcte
  3031.     $(ADDMOD) dcte -obj $(dcte_)
  3032.     $(ADDMOD) dcte -oper zfdcte
  3033.  
  3034. zfdcte.$(OBJ): zfdcte.c $(OP) $(memory__h) $(stdio__h)\
  3035.   $(idict_h) $(idparam_h) $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3036.   jpeglib.h
  3037.  
  3038. # Decoding (decompression)
  3039.  
  3040. dctd_=$(dctc_) zfdctd.$(OBJ)
  3041. dctd.dev: $(INT_MAK) $(ECHOGS_XE) sdctd.dev $(dctd_)
  3042.     $(SETMOD) dctd -include sdctd
  3043.     $(ADDMOD) dctd -obj $(dctd_)
  3044.     $(ADDMOD) dctd -oper zfdctd
  3045.  
  3046. zfdctd.$(OBJ): zfdctd.c $(OP) $(memory__h) $(stdio__h)\
  3047.  $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3048.  jpeglib.h
  3049.  
  3050. # ---------------- zlib/Flate filters ---------------- #
  3051.  
  3052. fzlib.dev: $(INT_MAK) $(ECHOGS_XE) zfzlib.$(OBJ) szlibe.dev szlibd.dev
  3053.     $(SETMOD) fzlib -include szlibe szlibd
  3054.     $(ADDMOD) fzlib -obj zfzlib.$(OBJ)
  3055.     $(ADDMOD) fzlib -oper zfzlib
  3056.  
  3057. zfzlib.$(OBJ): zfzlib.c $(OP) \
  3058.   $(errors_h) $(idict_h) $(ifilter_h) \
  3059.   $(spdiffx_h) $(spngpx_h) $(strimpl_h) $(szlibx_h)
  3060.     $(CCCZ) zfzlib.c
  3061.  
  3062. # ================================ PDF ================================ #
  3063.  
  3064. # We need most of the Level 2 interpreter to do PDF, but not all of it.
  3065. # In fact, we don't even need all of a Level 1 interpreter.
  3066.  
  3067. # Because of the way the PDF encodings are defined, they must get loaded
  3068. # before we install the Level 2 resource machinery.
  3069. # On the other hand, the PDF .ps files must get loaded after
  3070. # level2dict is defined.
  3071. pdfmin.dev: $(INT_MAK) $(ECHOGS_XE)\
  3072.  psbase.dev color.dev dps2lib.dev dps2read.dev\
  3073.  fdecode.dev type1.dev pdffonts.dev psl2lib.dev psl2read.dev pdfread.dev
  3074.     $(SETMOD) pdfmin -include psbase color dps2lib dps2read
  3075.     $(ADDMOD) pdfmin -include fdecode type1
  3076.     $(ADDMOD) pdfmin -include pdffonts psl2lib psl2read pdfread
  3077.     $(ADDMOD) pdfmin -emulator PDF
  3078.  
  3079. pdf.dev: $(INT_MAK) $(ECHOGS_XE)\
  3080.  pdfmin.dev cff.dev cidfont.dev cie.dev compfont.dev cmapread.dev dctd.dev\
  3081.  ttfont.dev type2.dev
  3082.     $(SETMOD) pdf -include pdfmin cff cidfont cie cmapread compfont dctd
  3083.     $(ADDMOD) pdf -include ttfont type2
  3084.  
  3085. # Reader only
  3086.  
  3087. pdffonts.dev: $(INT_MAK) $(ECHOGS_XE) \
  3088.   gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps
  3089.     $(SETMOD) pdffonts -ps gs_mex_e gs_mro_e gs_pdf_e gs_wan_e
  3090.  
  3091. # pdf_2ps must be the last .ps file loaded.
  3092. pdfread.dev: $(INT_MAK) $(ECHOGS_XE) fzlib.dev
  3093.     $(SETMOD) pdfread -include fzlib
  3094.     $(ADDMOD) pdfread -ps gs_pdf gs_l2img
  3095.     $(ADDMOD) pdfread -ps pdf_base pdf_draw pdf_font pdf_main pdf_sec
  3096.     $(ADDMOD) pdfread -ps pdf_2ps
  3097.  
  3098. # ============================= Main program ============================== #
  3099.  
  3100. gs.$(OBJ): gs.c $(GH) \
  3101.   $(imain_h) $(imainarg_h) $(iminst_h)
  3102.  
  3103. icontext.$(OBJ): icontext.c $(GH)\
  3104.  $(gsstruct_h) $(gxalloc_h)\
  3105.  $(dstack_h) $(estack_h) $(ostack_h)\
  3106.  $(icontext_h) $(igstate_h) $(store_h)
  3107.  
  3108. imainarg.$(OBJ): imainarg.c $(GH) $(ctype__h) $(memory__h) $(string__h) \
  3109.   $(gp_h) \
  3110.   $(gsargs_h) $(gscdefs_h) $(gsdevice_h) $(gsmdebug_h) $(gxdevice_h) $(gxdevmem_h) \
  3111.   $(errors_h) $(estack_h) $(files_h) \
  3112.   $(ialloc_h) $(imain_h) $(imainarg_h) $(iminst_h) \
  3113.   $(iname_h) $(interp_h) $(iscan_h) $(iutil_h) $(ivmspace_h) \
  3114.   $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3115.  
  3116. imain.$(OBJ): imain.c $(GH) $(memory__h) $(string__h)\
  3117.  $(gp_h) $(gslib_h) $(gsmatrix_h) $(gsutil_h) $(gxdevice_h)\
  3118.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3119.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(interp_h)\
  3120.  $(isave_h) $(iscan_h) $(ivmspace_h)\
  3121.  $(main_h) $(oper_h) $(ostack_h)\
  3122.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3123.  
  3124. interp.$(OBJ): interp.c $(GH) $(memory__h) $(string__h)\
  3125.  $(gsstruct_h)\
  3126.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3127.  $(ialloc_h) $(iastruct_h) $(inamedef_h) $(idict_h) $(interp_h) $(ipacked_h)\
  3128.  $(iscan_h) $(isave_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  3129.  $(oper_h) $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3130.     $(CCINT) interp.c
  3131.  
  3132. ireclaim.$(OBJ): ireclaim.c $(GH) \
  3133.   $(errors_h) $(gsstruct_h) $(iastate_h) $(opdef_h) $(store_h) \
  3134.   $(dstack_h) $(estack_h) $(ostack_h)
  3135. #    Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3136. # This file is part of Aladdin Ghostscript.
  3137. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3138. # or distributor accepts any responsibility for the consequences of using it,
  3139. # or for whether it serves any particular purpose or works at all, unless he
  3140. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3141. # License (the "License") for full details.
  3142. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3143. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3144. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3145. # under certain conditions described in the License.  Among other things, the
  3146. # License requires that the copyright notice and this notice be preserved on
  3147. # all copies.
  3148.  
  3149. # makefile for Independent JPEG Group library code.
  3150.  
  3151. # NOTE: This makefile is only known to work with the following versions
  3152. # of the IJG library: 6, 6a.
  3153. # As of May 11, 1996, version 6a is the current version.
  3154. #
  3155. # You can get the IJG library by Internet anonymous FTP from the following
  3156. # places:
  3157. #    Standard distribution (tar + gzip format, Unix end-of-line):
  3158. #        ftp.uu.net:/graphics/jpeg/jpegsrc.v*.tar.gz
  3159. #        ftp.cs.wisc.edu:/ghost/jpegsrc.v*.tar.gz
  3160. #    MS-DOS archive (PKZIP a.k.a. zip format, MS-DOS end-of-line):
  3161. #        ftp.simtel.net:/pub/simtelnet/msdos/graphics/jpegsr*.zip
  3162. #        ftp.cs.wisc.edu:/ghost/jpeg-*.zip
  3163. # The first site named above (ftp.uu.net and ftp.simtel.net) is supposed
  3164. # to be the master distribution site, so it may have a more up-to-date
  3165. # version; the ftp.cs.wisc.edu site is the master distribution site for
  3166. # Ghostscript, so it will always have IJG library versions known to be
  3167. # compatible with Ghostscript.
  3168. #
  3169. # If the version number, and hence the subdirectory name, changes, you
  3170. # will probably want to change the definitions of JSRCDIR and possibly
  3171. # JVERSION (in the platform-specific makefile, not here) to reflect this,
  3172. # since that way you can use the IJG archive without change.
  3173. #
  3174. # NOTE: For some obscure reason (probably a bug in djtarx), if you are
  3175. # compiling on a DesqView/X system, you should use the zip version of the
  3176. # IJG library, not the tar.gz version.
  3177.  
  3178. # Define the name of this makefile.
  3179. JPEG_MAK=jpeg.mak
  3180.  
  3181. # JSRCDIR is defined in the platform-specific makefile, not here,
  3182. # as the directory where the IJG library sources are stored.
  3183. #JSRCDIR=jpeg-6a
  3184. # JVERSION is defined in the platform-specific makefile, not here,
  3185. # as the IJG library major version number (currently "5" or "6").
  3186. #JVERSION=6
  3187.  
  3188. JSRC=$(JSRCDIR)$(D)
  3189. # CCCJ is defined in gs.mak.
  3190. #CCCJ=$(CCC) -I. -I$(JSRCDIR)
  3191.  
  3192. # We keep all of the IJG code in a separate directory so as not to
  3193. # inadvertently mix it up with Aladdin Enterprises' own code.
  3194. # However, we need our own version of jconfig.h, and our own "wrapper" for
  3195. # jmorecfg.h.  We also need a substitute for jerror.c, in order to
  3196. # keep the error strings out of the automatic data segment in
  3197. # 16-bit environments.  For v5*, we also need our own version of jpeglib.h
  3198. # in order to change MAX_BLOCKS_IN_MCU for Adobe compatibility.
  3199. # (This need will go away when IJG v6 is released.)
  3200.  
  3201. # Because this file is included after lib.mak, we can't use _h macros
  3202. # to express indirect dependencies; instead, we build the dependencies
  3203. # into the rules for copying the files.
  3204. jconfig_h=jconfig.h
  3205. jerror_h=jerror.h
  3206. jmorecfg_h=jmorecfg.h
  3207. jpeglib_h=jpeglib.h
  3208.  
  3209. jconfig.h: gsjconf.h $(std_h)
  3210.     $(CP_) gsjconf.h jconfig.h
  3211.  
  3212. jmorecfg.h: gsjmorec.h jmcorig.h
  3213.     $(CP_) gsjmorec.h jmorecfg.h
  3214.  
  3215. jmcorig.h: $(JSRC)jmorecfg.h
  3216.     $(CP_) $(JSRC)jmorecfg.h jmcorig.h
  3217.  
  3218. jpeglib.h: jlib$(JVERSION).h jconfig.h jmorecfg.h
  3219.     $(CP_) jlib$(JVERSION).h jpeglib.h
  3220.  
  3221. jlib5.h: gsjpglib.h
  3222.     $(CP_) gsjpglib.h jlib5.h
  3223.  
  3224. jlib6.h: $(JSRC)jpeglib.h
  3225.     $(CP_) $(JSRC)jpeglib.h jlib6.h
  3226.  
  3227. # To ensure that the compiler finds our versions of jconfig.h and jmorecfg.h,
  3228. # regardless of the compiler's search rule, we must copy up all .c files,
  3229. # and all .h files that include either of these files, directly or
  3230. # indirectly.  The only such .h files currently are jinclude.h and jpeglib.h.
  3231. # (Currently, we supply our own version of jpeglib.h -- see above.)
  3232. # Also, to avoid including the JSRCDIR directory name in our source files,
  3233. # we must also copy up any other .h files that our own code references.
  3234. # Currently, the only such .h files are jerror.h and jversion.h.
  3235.  
  3236. JHCOPY=jinclude.h jpeglib.h jerror.h jversion.h
  3237.  
  3238. jinclude.h: $(JSRC)jinclude.h
  3239.     $(CP_) $(JSRC)jinclude.h jinclude.h
  3240.  
  3241. #jpeglib.h: $(JSRC)jpeglib.h
  3242. #    $(CP_) $(JSRC)jpeglib.h jpeglib.h
  3243.  
  3244. jerror.h: $(JSRC)jerror.h
  3245.     $(CP_) $(JSRC)jerror.h jerror.h
  3246.  
  3247. jversion.h: $(JSRC)jversion.h
  3248.     $(CP_) $(JSRC)jversion.h jversion.h
  3249.  
  3250. # In order to avoid having to keep the dependency lists for the IJG code
  3251. # accurate, we simply make all of them depend on the only files that
  3252. # we are ever going to change, and on all the .h files that must be copied up.
  3253. # This is too conservative, but only hurts us if we are changing our own
  3254. # j*.h files, which happens only rarely during development.
  3255.  
  3256. JDEP=$(AK) $(jconfig_h) $(jerror_h) $(jmorecfg_h) $(JHCOPY)
  3257.  
  3258. # Code common to compression and decompression.
  3259.  
  3260. jpegc_=jcomapi.$(OBJ) jutils.$(OBJ) sjpegerr.$(OBJ) jmemmgr.$(OBJ)
  3261. jpegc.dev: $(JPEG_MAK) $(ECHOGS_XE) $(jpegc_)
  3262.     $(SETMOD) jpegc $(jpegc_)
  3263.  
  3264. jcomapi.$(OBJ): $(JSRC)jcomapi.c $(JDEP)
  3265.     $(CP_) $(JSRC)jcomapi.c .
  3266.     $(CCCJ) jcomapi.c
  3267.     $(RM_) jcomapi.c
  3268.  
  3269. jutils.$(OBJ): $(JSRC)jutils.c $(JDEP)
  3270.     $(CP_) $(JSRC)jutils.c .
  3271.     $(CCCJ) jutils.c
  3272.     $(RM_) jutils.c
  3273.  
  3274. # Note that sjpegerr replaces jerror.
  3275. sjpegerr.$(OBJ): sjpegerr.c $(JDEP)
  3276.     $(CCCF) sjpegerr.c
  3277.  
  3278. jmemmgr.$(OBJ): $(JSRC)jmemmgr.c $(JDEP)
  3279.     $(CP_) $(JSRC)jmemmgr.c .
  3280.     $(CCCJ) jmemmgr.c
  3281.     $(RM_) jmemmgr.c
  3282.  
  3283. # Encoding (compression) code.
  3284.  
  3285. jpege.dev: jpege$(JVERSION).dev
  3286.     $(CP_) jpege$(JVERSION).dev jpege.dev
  3287.  
  3288. jpege5=jcapi.$(OBJ)
  3289. jpege6=jcapimin.$(OBJ) jcapistd.$(OBJ) jcinit.$(OBJ)
  3290.  
  3291. jpege_1=jccoefct.$(OBJ) jccolor.$(OBJ) jcdctmgr.$(OBJ) 
  3292. jpege_2=jchuff.$(OBJ) jcmainct.$(OBJ) jcmarker.$(OBJ) jcmaster.$(OBJ)
  3293. jpege_3=jcparam.$(OBJ) jcprepct.$(OBJ) jcsample.$(OBJ) jfdctint.$(OBJ)
  3294.  
  3295. jpege5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege5) $(jpege_1) $(jpege_2) $(jpege_3)
  3296.     $(SETMOD) jpege5 $(jpege5)
  3297.     $(ADDMOD) jpege5 -include jpegc
  3298.     $(ADDMOD) jpege5 -obj $(jpege_1)
  3299.     $(ADDMOD) jpege5 -obj $(jpege_2)
  3300.     $(ADDMOD) jpege5 -obj $(jpege_3)
  3301.  
  3302. jpege6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege6) $(jpege_1) $(jpege_2) $(jpege_3)
  3303.     $(SETMOD) jpege6 $(jpege6)
  3304.     $(ADDMOD) jpege6 -include jpegc
  3305.     $(ADDMOD) jpege6 -obj $(jpege_1)
  3306.     $(ADDMOD) jpege6 -obj $(jpege_2)
  3307.     $(ADDMOD) jpege6 -obj $(jpege_3)
  3308.  
  3309. # jcapi.c is v5* only
  3310. jcapi.$(OBJ): $(JSRC)jcapi.c $(JDEP)
  3311.     $(CP_) $(JSRC)jcapi.c .
  3312.     $(CCCJ) jcapi.c
  3313.     $(RM_) jcapi.c
  3314.   
  3315. # jcapimin.c is new in v6
  3316. jcapimin.$(OBJ): $(JSRC)jcapimin.c $(JDEP)
  3317.     $(CP_) $(JSRC)jcapimin.c .
  3318.     $(CCCJ) jcapimin.c
  3319.     $(RM_) jcapimin.c
  3320.  
  3321. # jcapistd.c is new in v6
  3322. jcapistd.$(OBJ): $(JSRC)jcapistd.c $(JDEP)
  3323.     $(CP_) $(JSRC)jcapistd.c .
  3324.     $(CCCJ) jcapistd.c
  3325.     $(RM_) jcapistd.c
  3326.  
  3327. # jcinit.c is new in v6
  3328. jcinit.$(OBJ): $(JSRC)jcinit.c $(JDEP)
  3329.     $(CP_) $(JSRC)jcinit.c .
  3330.     $(CCCJ) jcinit.c
  3331.     $(RM_) jcinit.c
  3332.  
  3333. jccoefct.$(OBJ): $(JSRC)jccoefct.c $(JDEP)
  3334.     $(CP_) $(JSRC)jccoefct.c .
  3335.     $(CCCJ) jccoefct.c
  3336.     $(RM_) jccoefct.c
  3337.  
  3338. jccolor.$(OBJ): $(JSRC)jccolor.c $(JDEP)
  3339.     $(CP_) $(JSRC)jccolor.c .
  3340.     $(CCCJ) jccolor.c
  3341.     $(RM_) jccolor.c
  3342.  
  3343. jcdctmgr.$(OBJ): $(JSRC)jcdctmgr.c $(JDEP)
  3344.     $(CP_) $(JSRC)jcdctmgr.c .
  3345.     $(CCCJ) jcdctmgr.c
  3346.     $(RM_) jcdctmgr.c
  3347.  
  3348. jchuff.$(OBJ): $(JSRC)jchuff.c $(JDEP)
  3349.     $(CP_) $(JSRC)jchuff.c .
  3350.     $(CCCJ) jchuff.c
  3351.     $(RM_) jchuff.c
  3352.  
  3353. jcmainct.$(OBJ): $(JSRC)jcmainct.c $(JDEP)
  3354.     $(CP_) $(JSRC)jcmainct.c .
  3355.     $(CCCJ) jcmainct.c
  3356.     $(RM_) jcmainct.c
  3357.  
  3358. jcmarker.$(OBJ): $(JSRC)jcmarker.c $(JDEP)
  3359.     $(CP_) $(JSRC)jcmarker.c .
  3360.     $(CCCJ) jcmarker.c
  3361.     $(RM_) jcmarker.c
  3362.  
  3363. jcmaster.$(OBJ): $(JSRC)jcmaster.c $(JDEP)
  3364.     $(CP_) $(JSRC)jcmaster.c .
  3365.     $(CCCJ) jcmaster.c
  3366.     $(RM_) jcmaster.c
  3367.  
  3368. jcparam.$(OBJ): $(JSRC)jcparam.c $(JDEP)
  3369.     $(CP_) $(JSRC)jcparam.c .
  3370.     $(CCCJ) jcparam.c
  3371.     $(RM_) jcparam.c
  3372.  
  3373. jcprepct.$(OBJ): $(JSRC)jcprepct.c $(JDEP)
  3374.     $(CP_) $(JSRC)jcprepct.c .
  3375.     $(CCCJ) jcprepct.c
  3376.     $(RM_) jcprepct.c
  3377.  
  3378. jcsample.$(OBJ): $(JSRC)jcsample.c $(JDEP)
  3379.     $(CP_) $(JSRC)jcsample.c .
  3380.     $(CCCJ) jcsample.c
  3381.     $(RM_) jcsample.c
  3382.  
  3383. jfdctint.$(OBJ): $(JSRC)jfdctint.c $(JDEP)
  3384.     $(CP_) $(JSRC)jfdctint.c .
  3385.     $(CCCJ) jfdctint.c
  3386.     $(RM_) jfdctint.c
  3387.  
  3388. # Decompression code
  3389.  
  3390. jpegd.dev: jpegd$(JVERSION).dev
  3391.     $(CP_) jpegd$(JVERSION).dev jpegd.dev
  3392.  
  3393. jpegd5=jdapi.$(OBJ)
  3394. jpegd6=jdapimin.$(OBJ) jdapistd.$(OBJ) jdinput.$(OBJ) jdphuff.$(OBJ)
  3395.  
  3396. jpegd_1=jdcoefct.$(OBJ) jdcolor.$(OBJ)
  3397. jpegd_2=jddctmgr.$(OBJ) jdhuff.$(OBJ) jdmainct.$(OBJ) jdmarker.$(OBJ)
  3398. jpegd_3=jdmaster.$(OBJ) jdpostct.$(OBJ) jdsample.$(OBJ) jidctint.$(OBJ)
  3399.  
  3400. jpegd5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd5) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3401.     $(SETMOD) jpegd5 $(jpegd5)
  3402.     $(ADDMOD) jpegd5 -include jpegc
  3403.     $(ADDMOD) jpegd5 -obj $(jpegd_1)
  3404.     $(ADDMOD) jpegd5 -obj $(jpegd_2)
  3405.     $(ADDMOD) jpegd5 -obj $(jpegd_3)
  3406.  
  3407. jpegd6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd6) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3408.     $(SETMOD) jpegd6 $(jpegd6)
  3409.     $(ADDMOD) jpegd6 -include jpegc
  3410.     $(ADDMOD) jpegd6 -obj $(jpegd_1)
  3411.     $(ADDMOD) jpegd6 -obj $(jpegd_2)
  3412.     $(ADDMOD) jpegd6 -obj $(jpegd_3)
  3413.  
  3414. # jdapi.c is v5* only
  3415. jdapi.$(OBJ): $(JSRC)jdapi.c $(JDEP)
  3416.     $(CP_) $(JSRC)jdapi.c .
  3417.     $(CCCJ) jdapi.c
  3418.     $(RM_) jdapi.c
  3419.  
  3420. # jdapimin.c is new in v6
  3421. jdapimin.$(OBJ): $(JSRC)jdapimin.c $(JDEP)
  3422.     $(CP_) $(JSRC)jdapimin.c .
  3423.     $(CCCJ) jdapimin.c
  3424.     $(RM_) jdapimin.c
  3425.  
  3426. # jdapistd.c is new in v6
  3427. jdapistd.$(OBJ): $(JSRC)jdapistd.c $(JDEP)
  3428.     $(CP_) $(JSRC)jdapistd.c .
  3429.     $(CCCJ) jdapistd.c
  3430.     $(RM_) jdapistd.c
  3431.  
  3432. jdcoefct.$(OBJ): $(JSRC)jdcoefct.c $(JDEP)
  3433.     $(CP_) $(JSRC)jdcoefct.c .
  3434.     $(CCCJ) jdcoefct.c
  3435.     $(RM_) jdcoefct.c
  3436.  
  3437. jdcolor.$(OBJ): $(JSRC)jdcolor.c $(JDEP)
  3438.     $(CP_) $(JSRC)jdcolor.c .
  3439.     $(CCCJ) jdcolor.c
  3440.     $(RM_) jdcolor.c
  3441.  
  3442. jddctmgr.$(OBJ): $(JSRC)jddctmgr.c $(JDEP)
  3443.     $(CP_) $(JSRC)jddctmgr.c .
  3444.     $(CCCJ) jddctmgr.c
  3445.     $(RM_) jddctmgr.c
  3446.  
  3447. jdhuff.$(OBJ): $(JSRC)jdhuff.c $(JDEP)
  3448.     $(CP_) $(JSRC)jdhuff.c .
  3449.     $(CCCJ) jdhuff.c
  3450.     $(RM_) jdhuff.c
  3451.  
  3452. # jdinput.c is new in v6
  3453. jdinput.$(OBJ): $(JSRC)jdinput.c $(JDEP)
  3454.     $(CP_) $(JSRC)jdinput.c .
  3455.     $(CCCJ) jdinput.c
  3456.     $(RM_) jdinput.c
  3457.  
  3458. jdmainct.$(OBJ): $(JSRC)jdmainct.c $(JDEP)
  3459.     $(CP_) $(JSRC)jdmainct.c .
  3460.     $(CCCJ) jdmainct.c
  3461.     $(RM_) jdmainct.c
  3462.  
  3463. jdmarker.$(OBJ): $(JSRC)jdmarker.c $(JDEP)
  3464.     $(CP_) $(JSRC)jdmarker.c .
  3465.     $(CCCJ) jdmarker.c
  3466.     $(RM_) jdmarker.c
  3467.  
  3468. jdmaster.$(OBJ): $(JSRC)jdmaster.c $(JDEP)
  3469.     $(CP_) $(JSRC)jdmaster.c .
  3470.     $(CCCJ) jdmaster.c
  3471.     $(RM_) jdmaster.c
  3472.  
  3473. # jdphuff.c is new in v6
  3474. jdphuff.$(OBJ): $(JSRC)jdphuff.c $(JDEP)
  3475.     $(CP_) $(JSRC)jdphuff.c .
  3476.     $(CCCJ) jdphuff.c
  3477.     $(RM_) jdphuff.c
  3478.  
  3479. jdpostct.$(OBJ): $(JSRC)jdpostct.c $(JDEP)
  3480.     $(CP_) $(JSRC)jdpostct.c .
  3481.     $(CCCJ) jdpostct.c
  3482.     $(RM_) jdpostct.c
  3483.  
  3484. jdsample.$(OBJ): $(JSRC)jdsample.c $(JDEP)
  3485.     $(CP_) $(JSRC)jdsample.c .
  3486.     $(CCCJ) jdsample.c
  3487.     $(RM_) jdsample.c
  3488.  
  3489. jidctint.$(OBJ): $(JSRC)jidctint.c $(JDEP)
  3490.     $(CP_) $(JSRC)jidctint.c .
  3491.     $(CCCJ) jidctint.c
  3492.     $(RM_) jidctint.c
  3493. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3494. # This file is part of Aladdin Ghostscript.
  3495. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3496. # or distributor accepts any responsibility for the consequences of using it,
  3497. # or for whether it serves any particular purpose or works at all, unless he
  3498. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3499. # License (the "License") for full details.
  3500. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3501. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3502. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3503. # under certain conditions described in the License.  Among other things, the
  3504. # License requires that the copyright notice and this notice be preserved on
  3505. # all copies.
  3506.  
  3507. # makefile for PNG (Portable Network Graphics) code.
  3508.  
  3509. # This partial makefile compiles the png library for use in the Ghostscript
  3510. # PNG drivers.  You can get the source code for this library from:
  3511. #   ftp://swrinde.nde.swri.edu/pub/png/src/
  3512. # The makefile is known to work with the following library versions:
  3513. # 0.89, 0.90, 0.95, and 0.96.  NOTE: the archive for libpng 0.95 may
  3514. # be inconsistent: if you have compilation problems, use an older version.
  3515. # Please see Ghostscript's `make.txt' file for instructions about how to
  3516. # unpack these archives.
  3517. #
  3518. # The specification for the PNG file format is available from:
  3519. #   http://www.group42.com/png.htm
  3520. #   http://www.w3.org/pub/WWW/TR/WD-png
  3521.  
  3522. # Define the name of this makefile.
  3523. LIBPNG_MAK=libpng.mak
  3524.  
  3525. # PSRCDIR is defined in the platform-specific makefile, not here,
  3526. # as the directory where the PNG library sources are stored.
  3527. #PSRCDIR=libpng
  3528. # PVERSION is defined in the platform-specific makefile, not here,
  3529. # as the libpng version number ("89", "90", "95", or "96").
  3530. #PVERSION=96
  3531.  
  3532. PSRC=$(PSRCDIR)$(D)
  3533. # CCCP is defined in gs.mak.
  3534. #CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR)
  3535.  
  3536. # We keep all of the PNG code in a separate directory so as not to
  3537. # inadvertently mix it up with Aladdin Enterprises' own code.
  3538. PDEP=$(AK)
  3539.  
  3540. png_1=png.$(OBJ) pngmem.$(OBJ) pngerror.$(OBJ)
  3541. png_2=pngtrans.$(OBJ) pngwrite.$(OBJ) pngwtran.$(OBJ) pngwutil.$(OBJ)
  3542.  
  3543. # libpng modules
  3544.  
  3545. png.$(OBJ): $(PSRC)png.c $(PDEP)
  3546.     $(CCCP) $(PSRC)png.c
  3547.  
  3548. # version 0.89 uses pngwio.c
  3549. pngwio.$(OBJ): $(PSRC)pngwio.c $(PDEP)
  3550.     $(CCCP) $(PSRC)pngwio.c
  3551.  
  3552. pngmem.$(OBJ): $(PSRC)pngmem.c $(PDEP)
  3553.     $(CCCP) $(PSRC)pngmem.c
  3554.  
  3555. pngerror.$(OBJ): $(PSRC)pngerror.c $(PDEP)
  3556.     $(CCCP) $(PSRC)pngerror.c
  3557.  
  3558. pngtrans.$(OBJ): $(PSRC)pngtrans.c $(PDEP)
  3559.     $(CCCP) $(PSRC)pngtrans.c
  3560.  
  3561. pngwrite.$(OBJ): $(PSRC)pngwrite.c $(PDEP)
  3562.     $(CCCP) $(PSRC)pngwrite.c
  3563.  
  3564. pngwtran.$(OBJ): $(PSRC)pngwtran.c $(PDEP)
  3565.     $(CCCP) $(PSRC)pngwtran.c
  3566.  
  3567. pngwutil.$(OBJ): $(PSRC)pngwutil.c $(PDEP)
  3568.     $(CCCP) $(PSRC)pngwutil.c
  3569.  
  3570. # Define the version of libpng.dev that we are actually using.
  3571. libpng.dev: $(MAKEFILE) libpng_$(SHARE_LIBPNG).dev
  3572.     $(CP_) libpng_$(SHARE_LIBPNG).dev libpng.dev
  3573.  
  3574. # Define the shared version of libpng.
  3575. # Note that it requires libz, which must be searched *after* libpng.
  3576. libpng_1.dev: $(MAKEFILE) $(LIBPNG_MAK) $(ECHOGS_XE) zlibe.dev
  3577.     $(SETMOD) libpng_1 -lib $(LIBPNG_NAME)
  3578.     $(ADDMOD) libpng_1 -include zlibe
  3579.  
  3580. # Define the non-shared version of libpng.
  3581. libpng_0.dev: $(LIBPNG_MAK) $(ECHOGS_XE) $(png_1) $(png_2)\
  3582.  zlibe.dev libpng$(PVERSION).dev
  3583.     $(SETMOD) libpng_0 $(png_1)
  3584.     $(ADDMOD) libpng_0 $(png_2)
  3585.     $(ADDMOD) libpng_0 -include zlibe libpng$(PVERSION)
  3586.  
  3587. libpng89.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ)
  3588.     $(SETMOD) libpng89 pngwio.$(OBJ)
  3589.  
  3590. libpng90.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3591.     $(SETMOD) libpng90 pngwio.$(OBJ) -include crc32
  3592.  
  3593. libpng95.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3594.     $(SETMOD) libpng95 pngwio.$(OBJ) -include crc32
  3595.  
  3596. libpng96.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3597.     $(SETMOD) libpng96 pngwio.$(OBJ) -include crc32
  3598. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3599. # This file is part of Aladdin Ghostscript.
  3600. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3601. # or distributor accepts any responsibility for the consequences of using it,
  3602. # or for whether it serves any particular purpose or works at all, unless he
  3603. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3604. # License (the "License") for full details.
  3605. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3606. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3607. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3608. # under certain conditions described in the License.  Among other things, the
  3609. # License requires that the copyright notice and this notice be preserved on
  3610. # all copies.
  3611.  
  3612. # makefile for zlib library code.
  3613.  
  3614. # This partial makefile compiles the zlib library for use in Ghostscript.
  3615. # You can get the source code for this library from:
  3616. #   ftp://ftp.uu.net/pub/archiving/zip/zlib/zlib104.zip   (zlib 1.0.4)
  3617. #        or zlib-1.0.4.tar.gz
  3618. # Please see Ghostscript's `make.txt' file for instructions about how to
  3619. # unpack these archives.
  3620.  
  3621. # Define the name of this makefile.
  3622. ZLIB_MAK=zlib.mak
  3623.  
  3624. # ZSRCDIR is defined in the platform-specific makefile, not here,
  3625. # as the directory where the zlib sources are stored.
  3626. #ZSRCDIR=zlib
  3627. ZSRC=$(ZSRCDIR)$(D)
  3628. # We would like to define
  3629. #CCCZ=$(CCC) -I$(ZSRCDIR) -Dverbose=-1
  3630. # but the Watcom C compiler has strange undocumented restrictions on what can
  3631. # follow a -D=, and it doesn't allow negative numbers.  Instead, we define
  3632. # (in gs.mak):
  3633. #CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  3634. # and handle the definition of verbose in a different, more awkward way.
  3635.  
  3636. # We keep all of the zlib code in a separate directory so as not to
  3637. # inadvertently mix it up with Aladdin Enterprises' own code.
  3638. ZDEP=$(AK)
  3639.  
  3640. # Contrary to what some portability bigots assert as fact, C compilers are
  3641. # not consistent about where they start searching for #included files:
  3642. # some always start by looking in the same directory as the .c file being
  3643. # compiled, before using the search path specified with -I on the command
  3644. # line, while others do not do this.  For this reason, we must explicitly
  3645. # copy and then delete all the .c files, because they need to obtain our
  3646. # modified version of zutil.h.  We must also copy all header files that
  3647. # reference zutil.h directly or indirectly.
  3648.  
  3649. # Code common to compression and decompression.
  3650.  
  3651. zlibc_=zutil.$(OBJ)
  3652. zlibc.dev: $(ZLIB_MAK) $(ECHOGS_XE) $(zlibc_)
  3653.     $(SETMOD) zlibc $(zlibc_)
  3654.  
  3655. zutil.h: $(ZSRC)zutil.h $(ECHOGS_XE)
  3656.     $(EXP)echogs -w zutil.h -x 23 define verbose -s - -1
  3657.     $(EXP)echogs -a zutil.h -+R $(ZSRC)zutil.h
  3658.  
  3659. zutil.$(OBJ): $(ZSRC)zutil.c $(ZDEP) zutil.h
  3660.     $(CP_) $(ZSRC)zutil.c .
  3661.     $(CCCZ) zutil.c
  3662.     $(RM_) zutil.c
  3663.  
  3664. # Encoding (compression) code.
  3665.  
  3666. deflate.h: $(ZSRC)deflate.h zutil.h
  3667.     $(CP_) $(ZSRC)deflate.h .
  3668.  
  3669. zlibe.dev: $(MAKEFILE) zlibe_$(SHARE_ZLIB).dev
  3670.     $(CP_) zlibe_$(SHARE_ZLIB).dev zlibe.dev
  3671.  
  3672. zlibe_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3673.     $(SETMOD) zlibe_1 -lib $(ZLIB_NAME)
  3674.  
  3675. zlibe_=adler32.$(OBJ) deflate.$(OBJ) trees.$(OBJ)
  3676. zlibe_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibe_)
  3677.     $(SETMOD) zlibe_0 $(zlibe_)
  3678.     $(ADDMOD) zlibe_0 -include zlibc
  3679.  
  3680. adler32.$(OBJ): $(ZSRC)adler32.c $(ZDEP)
  3681.     $(CP_) $(ZSRC)adler32.c .
  3682.     $(CCCZ) adler32.c
  3683.     $(RM_) adler32.c
  3684.  
  3685. deflate.$(OBJ): $(ZSRC)deflate.c $(ZDEP) deflate.h
  3686.     $(CP_) $(ZSRC)deflate.c .
  3687.     $(CCCZ) deflate.c
  3688.     $(RM_) deflate.c
  3689.  
  3690. trees.$(OBJ): $(ZSRC)trees.c $(ZDEP) deflate.h
  3691.     $(CP_) $(ZSRC)trees.c .
  3692.     $(CCCZ) trees.c
  3693.     $(RM_) trees.c
  3694.  
  3695. # The zlib filters per se don't need crc32, but libpng versions starting
  3696. # with 0.90 do.
  3697.  
  3698. crc32.dev: $(MAKEFILE) crc32_$(SHARE_ZLIB).dev
  3699.     $(CP_) crc32_$(SHARE_ZLIB).dev crc32.dev
  3700.  
  3701. crc32_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3702.     $(SETMOD) crc32_1 -lib $(ZLIB_NAME)
  3703.  
  3704. crc32_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) crc32.$(OBJ)
  3705.     $(SETMOD) crc32_0 crc32.$(OBJ)
  3706.  
  3707. crc32.$(OBJ): $(ZSRC)crc32.c $(ZDEP) deflate.h
  3708.     $(CP_) $(ZSRC)crc32.c .
  3709.     $(CCCZ) crc32.c
  3710.     $(RM_) crc32.c
  3711.  
  3712. # Decoding (decompression) code.
  3713.  
  3714. zlibd.dev: $(MAKEFILE) zlibd_$(SHARE_ZLIB).dev
  3715.     $(CP_) zlibd_$(SHARE_ZLIB).dev zlibd.dev
  3716.  
  3717. zlibd_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3718.     $(SETMOD) zlibd_1 -lib $(ZLIB_NAME)
  3719.  
  3720. zlibd1_=infblock.$(OBJ) infcodes.$(OBJ) inffast.$(OBJ)
  3721. zlibd2_=inflate.$(OBJ) inftrees.$(OBJ) infutil.$(OBJ)
  3722. zlibd_ = $(zlibd1_) $(zlibd2_)
  3723. zlibd_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibd_)
  3724.     $(SETMOD) zlibd_0 $(zlibd1_)
  3725.     $(ADDMOD) zlibd_0 -obj $(zlibd2_)
  3726.     $(ADDMOD) zlibd_0 -include zlibc
  3727.  
  3728. infblock.$(OBJ): $(ZSRC)infblock.c $(ZDEP) zutil.h
  3729.     $(CP_) $(ZSRC)infblock.c .
  3730.     $(CCCZ) infblock.c
  3731.     $(RM_) infblock.c
  3732.  
  3733. infcodes.$(OBJ): $(ZSRC)infcodes.c $(ZDEP) zutil.h
  3734.     $(CP_) $(ZSRC)infcodes.c .
  3735.     $(CCCZ) infcodes.c
  3736.     $(RM_) infcodes.c
  3737.  
  3738. inffast.$(OBJ): $(ZSRC)inffast.c $(ZDEP) zutil.h
  3739.     $(CP_) $(ZSRC)inffast.c .
  3740.     $(CCCZ) inffast.c
  3741.     $(RM_) inffast.c
  3742.  
  3743. inflate.$(OBJ): $(ZSRC)inflate.c $(ZDEP) zutil.h
  3744.     $(CP_) $(ZSRC)inflate.c .
  3745.     $(CCCZ) inflate.c
  3746.     $(RM_) inflate.c
  3747.  
  3748. inftrees.$(OBJ): $(ZSRC)inftrees.c $(ZDEP) zutil.h
  3749.     $(CP_) $(ZSRC)inftrees.c .
  3750.     $(CCCZ) inftrees.c
  3751.     $(RM_) inftrees.c
  3752.  
  3753. infutil.$(OBJ): $(ZSRC)infutil.c $(ZDEP) zutil.h
  3754.     $(CP_) $(ZSRC)infutil.c .
  3755.     $(CCCZ) infutil.c
  3756.     $(RM_) infutil.c
  3757. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3758. # This file is part of Aladdin Ghostscript.
  3759. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3760. # or distributor accepts any responsibility for the consequences of using it,
  3761. # or for whether it serves any particular purpose or works at all, unless he
  3762. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3763. # License (the "License") for full details.
  3764. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3765. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3766. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3767. # under certain conditions described in the License.  Among other things, the
  3768. # License requires that the copyright notice and this notice be preserved on
  3769. # all copies.
  3770.  
  3771. # makefile for device drivers.
  3772.  
  3773. # Define the name of this makefile.
  3774. DEVS_MAK=devs.mak
  3775.  
  3776. ###### --------------------------- Catalog -------------------------- ######
  3777.  
  3778. # It is possible to build configurations with an arbitrary collection of
  3779. # device drivers, although some drivers are supported only on a subset
  3780. # of the target platforms.  The currently available drivers are:
  3781.  
  3782. # MS-DOS displays (note: not usable with Desqview/X):
  3783. #   MS-DOS EGA and VGA:
  3784. #    ega    EGA (640x350, 16-color)
  3785. #    vga    VGA (640x480, 16-color)
  3786. #   MS-DOS SuperVGA:
  3787. # *    ali    SuperVGA using Avance Logic Inc. chipset, 256-color modes
  3788. # *    atiw    ATI Wonder SuperVGA, 256-color modes
  3789. # *    s3vga    SuperVGA using S3 86C911 chip (e.g., Diamond Stealth board)
  3790. #    svga16    Generic SuperVGA in 800x600, 16-color mode
  3791. # *    tseng    SuperVGA using Tseng Labs ET3000/4000 chips, 256-color modes
  3792. # *    tvga    SuperVGA using Trident chipset, 256-color modes
  3793. #   ****** NOTE: The vesa device does not work with the Watcom (32-bit MS-DOS)
  3794. #   ****** compiler or executable.
  3795. #    vesa    SuperVGA with VESA standard API driver
  3796. #   MS-DOS other:
  3797. #    bgi    Borland Graphics Interface (CGA)  [MS-DOS only]
  3798. # *    herc    Hercules Graphics display   [MS-DOS only]
  3799. # *    pe    Private Eye display
  3800. # Other displays:
  3801. #   MS Windows:
  3802. #    mswindll  Microsoft Windows 3.1 DLL  [MS Windows only]
  3803. #    mswinprn  Microsoft Windows 3.0, 3.1 DDB printer  [MS Windows only]
  3804. #    mswinpr2  Microsoft Windows 3.0, 3.1 DIB printer  [MS Windows only]
  3805. #   OS/2:
  3806. # *    os2pm    OS/2 Presentation Manager   [OS/2 only]
  3807. # *    os2dll    OS/2 DLL bitmap             [OS/2 only]
  3808. # *    os2prn    OS/2 printer                [OS/2 only]
  3809. #   Unix and VMS:
  3810. #   ****** NOTE: For direct frame buffer addressing under SCO Unix or Xenix,
  3811. #   ****** edit the definition of EGAVGA below.
  3812. # *    att3b1    AT&T 3b1/Unixpc monochrome display   [3b1 only]
  3813. # *    lvga256  Linux vgalib, 256-color VGA modes  [Linux only]
  3814. # *    sonyfb    Sony Microsystems monochrome display   [Sony only]
  3815. # *    sunview  SunView window system   [SunOS only]
  3816. # +    vgalib    Linux PC with VGALIB   [Linux only]
  3817. #    x11    X Windows version 11, release >=4   [Unix and VMS only]
  3818. #    x11alpha  X Windows masquerading as a device with alpha capability
  3819. #    x11cmyk  X Windows masquerading as a 1-bit-per-plane CMYK device
  3820. #    x11gray2  X Windows as a 2-bit gray-scale device
  3821. #    x11mono  X Windows masquerading as a black-and-white device
  3822. #   Platform-independent:
  3823. # *    sxlcrt    CRT sixels, e.g. for VT240-like terminals
  3824. # Printers:
  3825. # *    ap3250    Epson AP3250 printer
  3826. # *    appledmp  Apple Dot Matrix Printer (should also work with Imagewriter)
  3827. #    bj10e    Canon BubbleJet BJ10e
  3828. # *    bj200    Canon BubbleJet BJ200
  3829. # *    bjc600   Canon Color BubbleJet BJC-600, BJC-4000 and BJC-70
  3830. #               also good for Apple printers like the StyleWriter 2x00
  3831. # *    bjc800   Canon Color BubbleJet BJC-800
  3832. # *     ccr     CalComp Raster format
  3833. # *    cdeskjet  H-P DeskJet 500C with 1 bit/pixel color
  3834. # *    cdjcolor  H-P DeskJet 500C with 24 bit/pixel color and
  3835. #        high-quality color (Floyd-Steinberg) dithering;
  3836. #        also good for DeskJet 540C and Citizen Projet IIc (-r200x300)
  3837. # *    cdjmono  H-P DeskJet 500C printing black only;
  3838. #        also good for DeskJet 510, 520, and 540C (black only)
  3839. # *    cdj500    H-P DeskJet 500C (same as cdjcolor)
  3840. # *    cdj550    H-P DeskJet 550C/560C
  3841. # *    cp50    Mitsubishi CP50 color printer
  3842. # *    declj250  alternate DEC LJ250 driver
  3843. # +    deskjet  H-P DeskJet and DeskJet Plus
  3844. #    djet500  H-P DeskJet 500
  3845. # *    djet500c  H-P DeskJet 500C alternate driver
  3846. #        (does not work on 550C or 560C)
  3847. # *    dnj650c  H-P DesignJet 650C
  3848. #    epson    Epson-compatible dot matrix printers (9- or 24-pin)
  3849. # *    eps9mid  Epson-compatible 9-pin, interleaved lines
  3850. #        (intermediate resolution)
  3851. # *    eps9high  Epson-compatible 9-pin, interleaved lines
  3852. #        (triple resolution)
  3853. # *    epsonc    Epson LQ-2550 and Fujitsu 3400/2400/1200 color printers
  3854. # *    ibmpro  IBM 9-pin Proprinter
  3855. # *    imagen    Imagen ImPress printers
  3856. # *    iwhi    Apple Imagewriter in high-resolution mode
  3857. # *    iwlo    Apple Imagewriter in low-resolution mode
  3858. # *    iwlq    Apple Imagewriter LQ in 320 x 216 dpi mode
  3859. # *    jetp3852  IBM Jetprinter ink-jet color printer (Model #3852)
  3860. # +    laserjet  H-P LaserJet
  3861. # *    la50    DEC LA50 printer
  3862. # *    la70    DEC LA70 printer
  3863. # *    la70t    DEC LA70 printer with low-resolution text enhancement
  3864. # *    la75    DEC LA75 printer
  3865. # *    la75plus DEC LA75plus printer
  3866. # *    lbp8    Canon LBP-8II laser printer
  3867. # *    lips3    Canon LIPS III laser printer in English (CaPSL) mode
  3868. # *    ln03    DEC LN03 printer
  3869. # *    lj250    DEC LJ250 Companion color printer
  3870. # +    ljet2p    H-P LaserJet IId/IIp/III* with TIFF compression
  3871. # +    ljet3    H-P LaserJet III* with Delta Row compression
  3872. # +    ljet3d    H-P LaserJet IIID with duplex capability
  3873. # +    ljet4    H-P LaserJet 4 (defaults to 600 dpi)
  3874. # +    lj4dith  H-P LaserJet 4 with Floyd-Steinberg dithering
  3875. # +    ljetplus  H-P LaserJet Plus
  3876. #    lj5mono  H-P LaserJet 5 & 6 family (PCL XL), bitmap:
  3877. #        see below for restrictions & advice
  3878. #    lj5gray  H-P LaserJet 5 & 6 family, gray-scale bitmap;
  3879. #        see below for restrictions & advice
  3880. # *    lp2563    H-P 2563B line printer
  3881. # *    lp8000    Epson LP-8000 laser printer
  3882. # *     lq850   Epson LQ850 printer at 360 x 360 DPI resolution;
  3883. #               also good for Canon BJ300 with LQ850 emulation
  3884. # *    m8510    C.Itoh M8510 printer
  3885. # *    necp6    NEC P6/P6+/P60 printers at 360 x 360 DPI resolution
  3886. # *    nwp533  Sony Microsystems NWP533 laser printer   [Sony only]
  3887. # *    oce9050  OCE 9050 printer
  3888. # *    oki182    Okidata MicroLine 182
  3889. # *    okiibm    Okidata MicroLine IBM-compatible printers
  3890. # *    paintjet  alternate H-P PaintJet color printer
  3891. # *    pj    H-P PaintJet XL driver 
  3892. # *    pjetxl    alternate H-P PaintJet XL driver
  3893. # *    pjxl    H-P PaintJet XL color printer
  3894. # *    pjxl300  H-P PaintJet XL300 color printer;
  3895. #        also good for PaintJet 1200C
  3896. #    (pxlmono) H-P black-and-white PCL XL printers (LaserJet 5 and 6 family)
  3897. #    (pxlcolor) H-P color PCL XL printers (none available yet)
  3898. # *    r4081    Ricoh 4081 laser printer
  3899. # *    sj48    StarJet 48 inkjet printer
  3900. # *    sparc    SPARCprinter
  3901. # *    st800    Epson Stylus 800 printer
  3902. # *    stcolor    Epson Stylus Color
  3903. # *    t4693d2  Tektronix 4693d color printer, 2 bits per R/G/B component
  3904. # *    t4693d4  Tektronix 4693d color printer, 4 bits per R/G/B component
  3905. # *    t4693d8  Tektronix 4693d color printer, 8 bits per R/G/B component
  3906. # *    tek4696  Tektronix 4695/4696 inkjet plotter
  3907. # *    uniprint  Unified printer driver -- Configurable Color ESC/P-,
  3908. #        ESC/P2-, HP-RTL/PCL mono/color driver
  3909. # *    xes    Xerox XES printers (2700, 3700, 4045, etc.)
  3910. # Fax systems:
  3911. # *    dfaxhigh  DigiBoard, Inc.'s DigiFAX software format (high resolution)
  3912. # *    dfaxlow  DigiFAX low (normal) resolution
  3913. # Fax file format:
  3914. #   ****** NOTE: all of these drivers adjust the page size to match
  3915. #   ****** one of the three CCITT standard sizes (U.S. letter with A4 width,
  3916. #   ****** A4, or B4).
  3917. #    faxg3    Group 3 fax, with EOLs but no header or EOD
  3918. #    faxg32d  Group 3 2-D fax, with EOLs but no header or EOD
  3919. #    faxg4    Group 4 fax, with EOLs but no header or EOD
  3920. #    tiffcrle  TIFF "CCITT RLE 1-dim" (= Group 3 fax with no EOLs)
  3921. #    tiffg3    TIFF Group 3 fax (with EOLs)
  3922. #    tiffg32d  TIFF Group 3 2-D fax
  3923. #    tiffg4    TIFF Group 4 fax
  3924. # High-level file formats:
  3925. #    epswrite  EPS output (like PostScript Distillery)
  3926. #    pdfwrite  PDF output (like Adobe Acrobat Distiller)
  3927. #    pswrite  PostScript output (like PostScript Distillery)
  3928. #    pxlmono  Black-and-white PCL XL
  3929. #    pxlcolor  Color PCL XL
  3930. # Other raster file formats and devices:
  3931. #    bit    Plain bits, monochrome
  3932. #    bitrgb    Plain bits, RGB
  3933. #    bitcmyk  Plain bits, CMYK
  3934. #    bmpmono    Monochrome MS Windows .BMP file format
  3935. #    bmp16    4-bit (EGA/VGA) .BMP file format
  3936. #    bmp256    8-bit (256-color) .BMP file format
  3937. #    bmp16m    24-bit .BMP file format
  3938. #    cgmmono  Monochrome (black-and-white) CGM -- LOW LEVEL OUTPUT ONLY
  3939. #    cgm8    8-bit (256-color) CGM -- DITTO
  3940. #    cgm24    24-bit color CGM -- DITTO
  3941. # *    cif    CIF file format for VLSI
  3942. #    jpeg    JPEG format, RGB output
  3943. #    jpeggray  JPEG format, gray output
  3944. #    miff24    ImageMagick MIFF format, 24-bit direct color, RLE compressed
  3945. # *    mgrmono  1-bit monochrome MGR devices
  3946. # *    mgrgray2  2-bit gray scale MGR devices
  3947. # *    mgrgray4  4-bit gray scale MGR devices
  3948. # *    mgrgray8  8-bit gray scale MGR devices
  3949. # *    mgr4    4-bit (VGA) color MGR devices
  3950. # *    mgr8    8-bit color MGR devices
  3951. #    pcxmono    PCX file format, monochrome (1-bit black and white)
  3952. #    pcxgray    PCX file format, 8-bit gray scale
  3953. #    pcx16    PCX file format, 4-bit planar (EGA/VGA) color
  3954. #    pcx256    PCX file format, 8-bit chunky color
  3955. #    pcx24b    PCX file format, 24-bit color (3 8-bit planes)
  3956. #    pcxcmyk PCX file format, 4-bit chunky CMYK color
  3957. #    pbm    Portable Bitmap (plain format)
  3958. #    pbmraw    Portable Bitmap (raw format)
  3959. #    pgm    Portable Graymap (plain format)
  3960. #    pgmraw    Portable Graymap (raw format)
  3961. #    pgnm    Portable Graymap (plain format), optimizing to PBM if possible
  3962. #    pgnmraw    Portable Graymap (raw format), optimizing to PBM if possible
  3963. #    pnm    Portable Pixmap (plain format) (RGB), optimizing to PGM or PBM
  3964. #         if possible
  3965. #    pnmraw    Portable Pixmap (raw format) (RGB), optimizing to PGM or PBM
  3966. #         if possible
  3967. #    ppm    Portable Pixmap (plain format) (RGB)
  3968. #    ppmraw    Portable Pixmap (raw format) (RGB)
  3969. #    pkm    Portable inKmap (plain format) (4-bit CMYK => RGB)
  3970. #    pkmraw    Portable inKmap (raw format) (4-bit CMYK => RGB)
  3971. #    pngmono    Monochrome Portable Network Graphics (PNG)
  3972. #    pnggray    8-bit gray Portable Network Graphics (PNG)
  3973. #    png16    4-bit color Portable Network Graphics (PNG)
  3974. #    png256    8-bit color Portable Network Graphics (PNG)
  3975. #    png16m    24-bit color Portable Network Graphics (PNG)
  3976. #    psmono    PostScript (Level 1) monochrome image
  3977. #    psgray    PostScript (Level 1) 8-bit gray image
  3978. #    sgirgb    SGI RGB pixmap format
  3979. #    tiff12nc  TIFF 12-bit RGB, no compression
  3980. #    tiff24nc  TIFF 24-bit RGB, no compression (NeXT standard format)
  3981. #    tifflzw  TIFF LZW (tag = 5) (monochrome)
  3982. #    tiffpack  TIFF PackBits (tag = 32773) (monochrome)
  3983.  
  3984. # User-contributed drivers marked with * require hardware or software
  3985. # that is not available to Aladdin Enterprises.  Please contact the
  3986. # original contributors, not Aladdin Enterprises, if you have questions.
  3987. # Contact information appears in the driver entry below.
  3988. #
  3989. # Drivers marked with a + are maintained by Aladdin Enterprises with
  3990. # the assistance of users, since Aladdin Enterprises doesn't have access to
  3991. # the hardware for these either.
  3992.  
  3993. # If you add drivers, it would be nice if you kept each list
  3994. # in alphabetical order.
  3995.  
  3996. ###### ----------------------- End of catalog ----------------------- ######
  3997.  
  3998. # As noted in gs.mak, DEVICE_DEVS and DEVICE_DEVS1..15 select the devices
  3999. # that should be included in a given configuration.  By convention, these
  4000. # are used as follows.  Each of these must be limited to about 10 devices
  4001. # so as not to overflow the 120 character limit on MS-DOS command lines.
  4002. #    DEVICE_DEVS - the default device, and any display devices.
  4003. #    DEVICE_DEVS1 - additional display devices if needed.
  4004. #    DEVICE_DEVS2 - dot matrix printers.
  4005. #    DEVICE_DEVS3 - H-P monochrome printers.
  4006. #    DEVICE_DEVS4 - H-P color printers.
  4007. #    DEVICE_DEVS5 - additional H-P printers if needed.
  4008. #    DEVICE_DEVS6 - other ink-jet and laser printers.
  4009. #    DEVICE_DEVS7 - fax file formats.
  4010. #    DEVICE_DEVS8 - PCX file formats.
  4011. #    DEVICE_DEVS9 - PBM/PGM/PPM file formats.
  4012. #    DEVICE_DEVS10 - black-and-white TIFF file formats.
  4013. #    DEVICE_DEVS11 - BMP and color TIFF file formats.
  4014. #    DEVICE_DEVS12 - PostScript image and 'bit' file formats.
  4015. #    DEVICE_DEVS13 - PNG file formats.
  4016. #    DEVICE_DEVS14 - CGM, JPEG, and MIFF file formats.
  4017. #    DEVICE_DEVS15 - high-level (PostScript and PDF) file formats.
  4018. # Feel free to disregard this convention if it gets in your way.
  4019.  
  4020. # If you want to add a new device driver, the examples below should be
  4021. # enough of a guide to the correct form for the makefile rules.
  4022. # Note that all drivers other than displays must include page.dev in their
  4023. # dependencies and use $(SETPDEV) rather than $(SETDEV) in their rule bodies.
  4024.  
  4025. # All device drivers depend on the following:
  4026. GDEV=$(AK) $(ECHOGS_XE) $(gserrors_h) $(gx_h) $(gxdevice_h)
  4027.  
  4028. # "Printer" drivers depend on the following:
  4029. PDEVH=$(AK) $(gdevprn_h)
  4030.  
  4031. # Define the header files for device drivers.  Every header file used by
  4032. # more than one device driver family must be listed here.
  4033. gdev8bcm_h=gdev8bcm.h
  4034. gdevpccm_h=gdevpccm.h
  4035. gdevpcfb_h=gdevpcfb.h $(dos__h)
  4036. gdevpcl_h=gdevpcl.h
  4037. gdevsvga_h=gdevsvga.h
  4038. gdevx_h=gdevx.h
  4039.  
  4040. ###### ----------------------- Device support ----------------------- ######
  4041.  
  4042. # Provide a mapping between StandardEncoding and ISOLatin1Encoding.
  4043. gdevemap.$(OBJ): gdevemap.c $(AK) $(std_h)
  4044.  
  4045. # Implement dynamic color management for 8-bit mapped color displays.
  4046. gdev8bcm.$(OBJ): gdev8bcm.c $(AK) \
  4047.   $(gx_h) $(gxdevice_h) $(gdev8bcm_h)
  4048.  
  4049. ###### ------------------- MS-DOS display devices ------------------- ######
  4050.  
  4051. # There are really only three drivers: an EGA/VGA driver (4 bit-planes,
  4052. # plane-addressed), a SuperVGA driver (8 bit-planes, byte addressed),
  4053. # and a special driver for the S3 chip.
  4054.  
  4055. # PC display color mapping
  4056. gdevpccm.$(OBJ): gdevpccm.c $(AK) \
  4057.   $(gx_h) $(gsmatrix_h) $(gxdevice_h) $(gdevpccm_h)
  4058.  
  4059. ### ----------------------- EGA and VGA displays ----------------------- ###
  4060.  
  4061. # The shared MS-DOS makefile defines PCFBASM as either gdevegaa.$(OBJ)
  4062. # or an empty string.
  4063.  
  4064. gdevegaa.$(OBJ): gdevegaa.asm
  4065.  
  4066. # NOTE: for direct frame buffer addressing under SCO Unix or Xenix,
  4067. # change gdevevga to gdevsco in the following line.  Also, since
  4068. # SCO's /bin/as does not support the "out" instructions, you must build
  4069. # the gnu assembler and have it on your path as "as".
  4070. EGAVGA=gdevevga.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4071. #EGAVGA=gdevsco.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4072.  
  4073. gdevevga.$(OBJ): gdevevga.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4074.     $(CCD) gdevevga.c
  4075.  
  4076. gdevsco.$(OBJ): gdevsco.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4077.  
  4078. # Common code for MS-DOS and SCO.
  4079. gdevpcfb.$(OBJ): gdevpcfb.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4080.  $(gdevpccm_h) $(gdevpcfb_h) $(gsparam_h)
  4081.     $(CCD) gdevpcfb.c
  4082.  
  4083. # The EGA/VGA family includes EGA and VGA.  Many SuperVGAs in 800x600,
  4084. # 16-color mode can share the same code; see the next section below.
  4085.  
  4086. ega.dev: $(EGAVGA)
  4087.     $(SETDEV) ega $(EGAVGA)
  4088.  
  4089. vga.dev: $(EGAVGA)
  4090.     $(SETDEV) vga $(EGAVGA)
  4091.  
  4092. ### ------------------------- SuperVGA displays ------------------------ ###
  4093.  
  4094. # SuperVGA displays in 16-color, 800x600 mode are really just slightly
  4095. # glorified VGA's, so we can handle them all with a single driver.
  4096. # The way to select them on the command line is with
  4097. #    -sDEVICE=svga16 -dDisplayMode=NNN
  4098. # where NNN is the display mode in decimal.  See use.txt for the modes
  4099. # for some popular display chipsets.
  4100.  
  4101. svga16.dev: $(EGAVGA)
  4102.     $(SETDEV) svga16 $(EGAVGA)
  4103.  
  4104. # More capable SuperVGAs have a wide variety of slightly differing
  4105. # interfaces, so we need a separate driver for each one.
  4106.  
  4107. SVGA=gdevsvga.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4108.  
  4109. gdevsvga.$(OBJ): gdevsvga.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4110.  $(gsparam_h) $(gxarith_h) $(gdevpccm_h) $(gdevpcfb_h) $(gdevsvga_h)
  4111.     $(CCD) gdevsvga.c
  4112.  
  4113. # The SuperVGA family includes: Avance Logic Inc., ATI Wonder, S3,
  4114. # Trident, Tseng ET3000/4000, and VESA.
  4115.  
  4116. ali.dev: $(SVGA)
  4117.     $(SETDEV) ali $(SVGA)
  4118.  
  4119. atiw.dev: $(SVGA)
  4120.     $(SETDEV) atiw $(SVGA)
  4121.  
  4122. tseng.dev: $(SVGA)
  4123.     $(SETDEV) tseng $(SVGA)
  4124.  
  4125. tvga.dev: $(SVGA)
  4126.     $(SETDEV) tvga $(SVGA)
  4127.  
  4128. vesa.dev: $(SVGA)
  4129.     $(SETDEV) vesa $(SVGA)
  4130.  
  4131. # The S3 driver doesn't share much code with the others.
  4132.  
  4133. s3vga_=gdevs3ga.$(OBJ) gdevsvga.$(OBJ) gdevpccm.$(OBJ)
  4134. s3vga.dev: $(SVGA) $(s3vga_)
  4135.     $(SETDEV) s3vga $(SVGA)
  4136.     $(ADDMOD) s3vga -obj $(s3vga_)
  4137.  
  4138. gdevs3ga.$(OBJ): gdevs3ga.c $(GDEV) $(gdevpcfb_h) $(gdevsvga_h)
  4139.     $(CCD) gdevs3ga.c
  4140.  
  4141. ### ------------ The BGI (Borland Graphics Interface) device ----------- ###
  4142.  
  4143. cgaf.$(OBJ): $(BGIDIR)\cga.bgi
  4144.     $(BGIDIR)\bgiobj /F $(BGIDIR)\cga
  4145.  
  4146. egavgaf.$(OBJ): $(BGIDIR)\egavga.bgi
  4147.     $(BGIDIR)\bgiobj /F $(BGIDIR)\egavga
  4148.  
  4149. # Include egavgaf.$(OBJ) for debugging only.
  4150. bgi_=gdevbgi.$(OBJ) cgaf.$(OBJ)
  4151. bgi.dev: $(bgi_)
  4152.     $(SETDEV) bgi $(bgi_)
  4153.     $(ADDMOD) bgi -lib $(LIBDIR)\graphics
  4154.  
  4155. gdevbgi.$(OBJ): gdevbgi.c $(GDEV) $(MAKEFILE) $(gxxfont_h)
  4156.     $(CCC) -DBGI_LIB="$(BGIDIRSTR)" gdevbgi.c
  4157.  
  4158. ### ------------------- The Hercules Graphics display ------------------- ###
  4159.  
  4160. herc_=gdevherc.$(OBJ)
  4161. herc.dev: $(herc_)
  4162.     $(SETDEV) herc $(herc_)
  4163.  
  4164. gdevherc.$(OBJ): gdevherc.c $(GDEV) $(dos__h) $(gsmatrix_h) $(gxbitmap_h)
  4165.     $(CCC) gdevherc.c
  4166.  
  4167. ### ---------------------- The Private Eye display ---------------------- ###
  4168. ### Note: this driver was contributed by a user:                          ###
  4169. ###   please contact narf@media-lab.media.mit.edu if you have questions.  ###
  4170.  
  4171. pe_=gdevpe.$(OBJ)
  4172. pe.dev: $(pe_)
  4173.     $(SETDEV) pe $(pe_)
  4174.  
  4175. gdevpe.$(OBJ): gdevpe.c $(GDEV) $(memory__h)
  4176.  
  4177. ###### ----------------------- Other displays ------------------------ ######
  4178.  
  4179. ### -------------------- The MS-Windows 3.n DLL ------------------------- ###
  4180.  
  4181. gsdll_h=gsdll.h
  4182.  
  4183. gdevmswn_h=gdevmswn.h $(GDEV)\
  4184.  $(dos__h) $(memory__h) $(string__h) $(windows__h)\
  4185.  gp_mswin.h
  4186.  
  4187. gdevmswn.$(OBJ): gdevmswn.c $(gdevmswn_h) $(gp_h) $(gpcheck_h) \
  4188.  $(gsdll_h) $(gsparam_h) $(gdevpccm_h)
  4189.  
  4190. gdevmsxf.$(OBJ): gdevmsxf.c $(ctype__h) $(math__h) $(memory__h) $(string__h)\
  4191.  $(gdevmswn_h) $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4192.  
  4193. # An implementation using a DIB filled by an image device.
  4194. gdevwdib.$(OBJ): gdevwdib.c $(gdevmswn_h) $(gsdll_h) $(gxdevmem_h)
  4195.  
  4196. mswindll_=gdevmswn.$(OBJ) gdevmsxf.$(OBJ) gdevwdib.$(OBJ) \
  4197.   gdevemap.$(OBJ) gdevpccm.$(OBJ)
  4198. mswindll.dev: $(mswindll_)
  4199.     $(SETDEV) mswindll $(mswindll_)
  4200.  
  4201. ### -------------------- The MS-Windows DDB 3.n printer ----------------- ###
  4202.  
  4203. mswinprn_=gdevwprn.$(OBJ) gdevmsxf.$(OBJ)
  4204. mswinprn.dev: $(mswinprn_)
  4205.     $(SETDEV) mswinprn $(mswinprn_)
  4206.  
  4207. gdevwprn.$(OBJ): gdevwprn.c $(gdevmswn_h) $(gp_h)
  4208.  
  4209. ### -------------------- The MS-Windows DIB 3.n printer ----------------- ###
  4210.  
  4211. mswinpr2_=gdevwpr2.$(OBJ)
  4212. mswinpr2.dev: $(mswinpr2_) page.dev
  4213.     $(SETPDEV) mswinpr2 $(mswinpr2_)
  4214.  
  4215. gdevwpr2.$(OBJ): gdevwpr2.c $(PDEVH) $(windows__h)\
  4216.  $(gdevpccm_h) $(gp_h) gp_mswin.h
  4217.  
  4218. ### ------------------ OS/2 Presentation Manager device ----------------- ###
  4219.  
  4220. os2pm_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4221. os2pm.dev: $(os2pm_)
  4222.     $(SETDEV) os2pm $(os2pm_)
  4223.  
  4224. os2dll_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4225. os2dll.dev: $(os2dll_)
  4226.     $(SETDEV) os2dll $(os2dll_)
  4227.  
  4228. gdevpm.$(OBJ): gdevpm.c $(string__h)\
  4229.  $(gp_h) $(gpcheck_h)\
  4230.  $(gsdll_h) $(gserrors_h) $(gsexit_h) $(gsparam_h)\
  4231.  $(gx_h) $(gxdevice_h) $(gxdevmem_h)\
  4232.  $(gdevpccm_h) gdevpm.h
  4233.  
  4234. ### --------------------------- The OS/2 printer ------------------------ ###
  4235.  
  4236. os2prn_=gdevos2p.$(OBJ)
  4237. os2prn.dev: $(os2prn_) page.dev
  4238.     $(SETPDEV) os2prn $(os2prn_)
  4239.  
  4240. os2prn.$(OBJ): os2prn.c $(gp_h)
  4241.  
  4242. ### -------------- The AT&T 3b1 Unixpc monochrome display --------------- ###
  4243. ### Note: this driver was contributed by a user: please contact           ###
  4244. ###       Andy Fyfe (andy@cs.caltech.edu) if you have questions.          ###
  4245.  
  4246. att3b1_=gdev3b1.$(OBJ)
  4247. att3b1.dev: $(att3b1_)
  4248.     $(SETDEV) att3b1 $(att3b1_)
  4249.  
  4250. gdev3b1.$(OBJ): gdev3b1.c $(GDEV)
  4251.  
  4252. ### ---------------------- Linux PC with vgalib ------------------------- ###
  4253. ### Note: these drivers were contributed by users.                        ###
  4254. ### For questions about the lvga256 driver, please contact                ###
  4255. ###       Ludger Kunz (ludger.kunz@fernuni-hagen.de).                     ###
  4256. ### For questions about the vgalib driver, please contact                 ###
  4257. ###       Erik Talvola (talvola@gnu.ai.mit.edu).                          ###
  4258.  
  4259. lvga256_=gdevl256.$(OBJ)
  4260. lvga256.dev: $(lvga256_)
  4261.     $(SETDEV) lvga256 $(lvga256_)
  4262.     $(ADDMOD) lvga256 -lib vga vgagl
  4263.  
  4264. gdevl256.$(OBJ): gdevl256.c $(GDEV)
  4265.  
  4266. vgalib_=gdevvglb.$(OBJ) gdevpccm.$(OBJ)
  4267. vgalib.dev: $(vgalib_)
  4268.     $(SETDEV) vgalib $(vgalib_)
  4269.     $(ADDMOD) vgalib -lib vga
  4270.  
  4271. gdevvglb.$(OBJ): gdevvglb.c $(GDEV) $(gdevpccm_h) $(gsparam_h)
  4272.  
  4273. ### ------------------- Sony NeWS frame buffer device ------------------ ###
  4274. ### Note: this driver was contributed by a user: please contact          ###
  4275. ###       Mike Smolenski (mike@intertech.com) if you have questions.     ###
  4276.  
  4277. # This is implemented as a 'printer' device.
  4278. sonyfb_=gdevsnfb.$(OBJ)
  4279. sonyfb.dev: $(sonyfb_) page.dev
  4280.     $(SETPDEV) sonyfb $(sonyfb_)
  4281.  
  4282. gdevsnfb.$(OBJ): gdevsnfb.c $(PDEVH)
  4283.  
  4284. ### ------------------------ The SunView device ------------------------ ###
  4285. ### Note: this driver is maintained by a user: if you have questions,    ###
  4286. ###       please contact Andreas Stolcke (stolcke@icsi.berkeley.edu).    ###
  4287.  
  4288. sunview_=gdevsun.$(OBJ)
  4289. sunview.dev: $(sunview_)
  4290.     $(SETDEV) sunview $(sunview_)
  4291.     $(ADDMOD) sunview -lib suntool sunwindow pixrect
  4292.  
  4293. gdevsun.$(OBJ): gdevsun.c $(GDEV) $(malloc__h)\
  4294.  $(gscdefs_h) $(gserrors_h) $(gsmatrix_h)
  4295.  
  4296. ### -------------------------- The X11 device -------------------------- ###
  4297.  
  4298. # Aladdin Enterprises does not support Ghostview.  For more information
  4299. # about Ghostview, please contact Tim Theisen (ghostview@cs.wisc.edu).
  4300.  
  4301. # See the main makefile for the definition of XLIBS.
  4302. x11_=gdevx.$(OBJ) gdevxini.$(OBJ) gdevxxf.$(OBJ) gdevemap.$(OBJ)
  4303. x11.dev: $(x11_)
  4304.     $(SETDEV) x11 $(x11_)
  4305.     $(ADDMOD) x11 -lib $(XLIBS)
  4306.  
  4307. # See the main makefile for the definition of XINCLUDE.
  4308. GDEVX=$(GDEV) x_.h gdevx.h $(MAKEFILE)
  4309. gdevx.$(OBJ): gdevx.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4310.     $(CCC) $(XINCLUDE) gdevx.c
  4311.  
  4312. gdevxini.$(OBJ): gdevxini.c $(GDEVX) $(math__h) $(memory__h) $(gserrors_h)
  4313.     $(CCC) $(XINCLUDE) gdevxini.c
  4314.  
  4315. gdevxxf.$(OBJ): gdevxxf.c $(GDEVX) $(math__h) $(memory__h)\
  4316.  $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4317.     $(CCC) $(XINCLUDE) gdevxxf.c
  4318.  
  4319. # Alternate X11-based devices to help debug other drivers.
  4320. # x11alpha pretends to have 4 bits of alpha channel.
  4321. # x11cmyk pretends to be a CMYK device with 1 bit each of C,M,Y,K.
  4322. # x11gray2 pretends to be a 2-bit gray-scale device.
  4323. # x11mono pretends to be a black-and-white device.
  4324. x11alt_=$(x11_) gdevxalt.$(OBJ)
  4325. x11alpha.dev: $(x11alt_)
  4326.     $(SETDEV) x11alpha $(x11alt_)
  4327.     $(ADDMOD) x11alpha -lib $(XLIBS)
  4328.  
  4329. x11cmyk.dev: $(x11alt_)
  4330.     $(SETDEV) x11cmyk $(x11alt_)
  4331.     $(ADDMOD) x11cmyk -lib $(XLIBS)
  4332.  
  4333. x11gray2.dev: $(x11alt_)
  4334.     $(SETDEV) x11gray2 $(x11alt_)
  4335.     $(ADDMOD) x11gray2 -lib $(XLIBS)
  4336.  
  4337. x11mono.dev: $(x11alt_)
  4338.     $(SETDEV) x11mono $(x11alt_)
  4339.     $(ADDMOD) x11mono -lib $(XLIBS)
  4340.  
  4341. gdevxalt.$(OBJ): gdevxalt.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4342.     $(CCC) $(XINCLUDE) gdevxalt.c
  4343.  
  4344. ### ------------------------- DEC sixel displays ------------------------ ###
  4345. ### Note: this driver was contributed by a user: please contact           ###
  4346. ###   Phil Keegstra (keegstra@tonga.gsfc.nasa.gov) if you have questions. ###
  4347.  
  4348. # This is a "printer" device, but it probably shouldn't be.
  4349. # I don't know why the implementor chose to do it this way.
  4350. sxlcrt_=gdevln03.$(OBJ)
  4351. sxlcrt.dev: $(sxlcrt_) page.dev
  4352.     $(SETPDEV) sxlcrt $(sxlcrt_)
  4353.  
  4354. ###### --------------- Memory-buffered printer devices --------------- ######
  4355.  
  4356. ### --------------------- The Apple printer devices --------------------- ###
  4357. ### Note: these drivers were contributed by users.                        ###
  4358. ###   If you have questions about the DMP driver, please contact          ###
  4359. ###    Mark Wedel (master@cats.ucsc.edu).                                ###
  4360. ###   If you have questions about the Imagewriter drivers, please contact ###
  4361. ###    Jonathan Luckey (luckey@rtfm.mlb.fl.us).                          ###
  4362. ###   If you have questions about the Imagewriter LQ driver, please       ###
  4363. ###    contact Scott Barker (barkers@cuug.ab.ca).                        ###
  4364.  
  4365. appledmp_=gdevadmp.$(OBJ)
  4366.  
  4367. gdevadmp.$(OBJ): gdevadmp.c $(PDEVH)
  4368.  
  4369. appledmp.dev: $(appledmp_) page.dev
  4370.     $(SETPDEV) appledmp $(appledmp_)
  4371.  
  4372. iwhi.dev: $(appledmp_) page.dev
  4373.     $(SETPDEV) iwhi $(appledmp_)
  4374.  
  4375. iwlo.dev: $(appledmp_) page.dev
  4376.     $(SETPDEV) iwlo $(appledmp_)
  4377.  
  4378. iwlq.dev: $(appledmp_) page.dev
  4379.     $(SETPDEV) iwlq $(appledmp_)
  4380.  
  4381. ### ------------ The Canon BubbleJet BJ10e and BJ200 devices ------------ ###
  4382.  
  4383. bj10e_=gdevbj10.$(OBJ)
  4384.  
  4385. bj10e.dev: $(bj10e_) page.dev
  4386.     $(SETPDEV) bj10e $(bj10e_)
  4387.  
  4388. bj200.dev: $(bj10e_) page.dev
  4389.     $(SETPDEV) bj200 $(bj10e_)
  4390.  
  4391. gdevbj10.$(OBJ): gdevbj10.c $(PDEVH)
  4392.  
  4393. ### ------------- The CalComp Raster Format ----------------------------- ###
  4394. ### Note: this driver was contributed by a user: please contact           ###
  4395. ###       Ernst Muellner (ernst.muellner@oenzl.siemens.de) if you have    ###
  4396. ###       questions.                                                      ###
  4397.  
  4398. ccr_=gdevccr.$(OBJ)
  4399. ccr.dev: $(ccr_) page.dev
  4400.     $(SETPDEV) ccr $(ccr_)
  4401.  
  4402. gdevccr.$(OBJ): gdevccr.c $(PDEVH)
  4403.  
  4404. ### ----------- The H-P DeskJet and LaserJet printer devices ----------- ###
  4405.  
  4406. ### These are essentially the same device.
  4407. ### NOTE: printing at full resolution (300 DPI) requires a printer
  4408. ###   with at least 1.5 Mb of memory.  150 DPI only requires .5 Mb.
  4409. ### Note that the lj4dith driver is included with the H-P color printer
  4410. ###   drivers below.
  4411.  
  4412. HPPCL=gdevpcl.$(OBJ)
  4413. HPMONO=gdevdjet.$(OBJ) $(HPPCL)
  4414.  
  4415. gdevpcl.$(OBJ): gdevpcl.c $(PDEVH) $(gdevpcl_h)
  4416.  
  4417. gdevdjet.$(OBJ): gdevdjet.c $(PDEVH) $(gdevpcl_h)
  4418.  
  4419. deskjet.dev: $(HPMONO) page.dev
  4420.     $(SETPDEV) deskjet $(HPMONO)
  4421.  
  4422. djet500.dev: $(HPMONO) page.dev
  4423.     $(SETPDEV) djet500 $(HPMONO)
  4424.  
  4425. laserjet.dev: $(HPMONO) page.dev
  4426.     $(SETPDEV) laserjet $(HPMONO)
  4427.  
  4428. ljetplus.dev: $(HPMONO) page.dev
  4429.     $(SETPDEV) ljetplus $(HPMONO)
  4430.  
  4431. ### Selecting ljet2p provides TIFF (mode 2) compression on LaserJet III,
  4432. ### IIIp, IIId, IIIsi, IId, and IIp. 
  4433.  
  4434. ljet2p.dev: $(HPMONO) page.dev
  4435.     $(SETPDEV) ljet2p $(HPMONO)
  4436.  
  4437. ### Selecting ljet3 provides Delta Row (mode 3) compression on LaserJet III,
  4438. ### IIIp, IIId, IIIsi.
  4439.  
  4440. ljet3.dev: $(HPMONO) page.dev
  4441.     $(SETPDEV) ljet3 $(HPMONO)
  4442.  
  4443. ### Selecting ljet3d also provides duplex printing capability.
  4444.  
  4445. ljet3d.dev: $(HPMONO) page.dev
  4446.     $(SETPDEV) ljet3d $(HPMONO)
  4447.  
  4448. ### Selecting ljet4 also provides Delta Row compression on LaserJet IV series.
  4449.  
  4450. ljet4.dev: $(HPMONO) page.dev
  4451.     $(SETPDEV) ljet4 $(HPMONO)
  4452.  
  4453. lp2563.dev: $(HPMONO) page.dev
  4454.     $(SETPDEV) lp2563 $(HPMONO)
  4455.  
  4456. oce9050.dev: $(HPMONO) page.dev
  4457.     $(SETPDEV) oce9050 $(HPMONO)
  4458.  
  4459. ### ------------------ The H-P LaserJet 5 and 6 devices ----------------- ###
  4460.  
  4461. ### These drivers use H-P's new PCL XL printer language, like H-P's
  4462. ### LaserJet 5 Enhanced driver for MS Windows.  We don't recommend using
  4463. ### them:
  4464. ###    - If you have a LJ5L, which isn't a "real" LaserJet 5, use the
  4465. ###    ljet4 driver instead.  (The lj5 drivers won't work.)
  4466. ###    - If you have any other model of LJ 5 or 6, use the pxlmono
  4467. ###    driver, which often produces much more compact output.
  4468.  
  4469. gdevpxat_h=gdevpxat.h
  4470. gdevpxen_h=gdevpxen.h
  4471. gdevpxop_h=gdevpxop.h
  4472.  
  4473. ljet5_=gdevlj56.$(OBJ) $(HPPCL)
  4474. lj5mono.dev: $(ljet5_) page.dev
  4475.     $(SETPDEV) lj5mono $(ljet5_)
  4476.  
  4477. lj5gray.dev: $(ljet5_) page.dev
  4478.     $(SETPDEV) lj5gray $(ljet5_)
  4479.  
  4480. gdevlj56.$(OBJ): gdevlj56.c $(PDEVH) $(gdevpcl_h)\
  4481.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h)
  4482.  
  4483. ### The H-P DeskJet, PaintJet, and DesignJet family color printer devices.###
  4484. ### Note: there are two different 500C drivers, both contributed by users.###
  4485. ###   If you have questions about the djet500c driver,                    ###
  4486. ###       please contact AKayser@et.tudelft.nl.                           ###
  4487. ###   If you have questions about the cdj* drivers,                       ###
  4488. ###       please contact g.cameron@biomed.abdn.ac.uk.                     ###
  4489. ###   If you have questions about the dnj560c driver,                     ###
  4490. ###       please contact koert@zen.cais.com.                              ###
  4491. ###   If you have questions about the lj4dith driver,                     ###
  4492. ###       please contact Eckhard.Rueggeberg@ts.go.dlr.de.                 ###
  4493. ###   If you have questions about the BJC600/BJC4000, BJC800, or ESCP     ###
  4494. ###       drivers, please contact Yves.Arrouye@imag.fr.                   ###
  4495.  
  4496. cdeskjet_=gdevcdj.$(OBJ) $(HPPCL)
  4497.  
  4498. cdeskjet.dev: $(cdeskjet_) page.dev
  4499.     $(SETPDEV) cdeskjet $(cdeskjet_)
  4500.  
  4501. cdjcolor.dev: $(cdeskjet_) page.dev
  4502.     $(SETPDEV) cdjcolor $(cdeskjet_)
  4503.  
  4504. cdjmono.dev: $(cdeskjet_) page.dev
  4505.     $(SETPDEV) cdjmono $(cdeskjet_)
  4506.  
  4507. cdj500.dev: $(cdeskjet_) page.dev
  4508.     $(SETPDEV) cdj500 $(cdeskjet_)
  4509.  
  4510. cdj550.dev: $(cdeskjet_) page.dev
  4511.     $(SETPDEV) cdj550 $(cdeskjet_)
  4512.  
  4513. declj250.dev: $(cdeskjet_) page.dev
  4514.     $(SETPDEV) declj250 $(cdeskjet_)
  4515.  
  4516. dnj650c.dev: $(cdeskjet_) page.dev
  4517.     $(SETPDEV) dnj650c $(cdeskjet_)
  4518.  
  4519. lj4dith.dev: $(cdeskjet_) page.dev
  4520.     $(SETPDEV) lj4dith $(cdeskjet_)
  4521.  
  4522. pj.dev: $(cdeskjet_) page.dev
  4523.     $(SETPDEV) pj $(cdeskjet_)
  4524.  
  4525. pjxl.dev: $(cdeskjet_) page.dev
  4526.     $(SETPDEV) pjxl $(cdeskjet_)
  4527.  
  4528. pjxl300.dev: $(cdeskjet_) page.dev
  4529.     $(SETPDEV) pjxl300 $(cdeskjet_)
  4530.  
  4531. # Note: the BJC600 driver also works for the BJC4000.
  4532. bjc600.dev: $(cdeskjet_) page.dev
  4533.     $(SETPDEV) bjc600 $(cdeskjet_)
  4534.  
  4535. bjc800.dev: $(cdeskjet_) page.dev
  4536.     $(SETPDEV) bjc800 $(cdeskjet_)
  4537.  
  4538. escp.dev: $(cdeskjet_) page.dev
  4539.     $(SETPDEV) escp $(cdeskjet_)
  4540.  
  4541. # NB: you can also customise the build if required, using
  4542. # -DBitsPerPixel=<number> if you wish the default to be other than 24
  4543. # for the generic drivers (cdj500, cdj550, pjxl300, pjtest, pjxltest).
  4544. gdevcdj.$(OBJ): gdevcdj.c $(std_h) $(PDEVH) gdevbjc.h\
  4545.  $(gsparam_h) $(gsstate_h) $(gxlum_h)\
  4546.  $(gdevpcl_h)
  4547.  
  4548. djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
  4549. djet500c.dev: $(djet500c_) page.dev
  4550.     $(SETPDEV) djet500c $(djet500c_)
  4551.  
  4552. gdevdjtc.$(OBJ): gdevdjtc.c $(PDEVH) $(malloc__h) $(gdevpcl_h)
  4553.  
  4554. ### -------------------- The Mitsubishi CP50 printer -------------------- ###
  4555. ### Note: this driver was contributed by a user: please contact           ###
  4556. ###       Michael Hu (michael@ximage.com) if you have questions.          ###
  4557.  
  4558. cp50_=gdevcp50.$(OBJ)
  4559. cp50.dev: $(cp50_) page.dev
  4560.     $(SETPDEV) cp50 $(cp50_)
  4561.  
  4562. gdevcp50.$(OBJ): gdevcp50.c $(PDEVH)
  4563.  
  4564. ### ----------------- The generic Epson printer device ----------------- ###
  4565. ### Note: most of this code was contributed by users.  Please contact    ###
  4566. ###       the following people if you have questions:                    ###
  4567. ###   eps9mid - Guenther Thomsen (thomsen@cs.tu-berlin.de)               ###
  4568. ###   eps9high - David Wexelblat (dwex@mtgzfs3.att.com)                  ###
  4569. ###   ibmpro - James W. Birdsall (jwbirdsa@picarefy.picarefy.com)        ###
  4570.  
  4571. epson_=gdevepsn.$(OBJ)
  4572.  
  4573. epson.dev: $(epson_) page.dev
  4574.     $(SETPDEV) epson $(epson_)
  4575.  
  4576. eps9mid.dev: $(epson_) page.dev
  4577.     $(SETPDEV) eps9mid $(epson_)
  4578.  
  4579. eps9high.dev: $(epson_) page.dev
  4580.     $(SETPDEV) eps9high $(epson_)
  4581.  
  4582. gdevepsn.$(OBJ): gdevepsn.c $(PDEVH)
  4583.  
  4584. ### ----------------- The IBM Proprinter printer device ---------------- ###
  4585.  
  4586. ibmpro.dev: $(epson_) page.dev
  4587.     $(SETPDEV) ibmpro $(epson_)
  4588.  
  4589. ### -------------- The Epson LQ-2550 color printer device -------------- ###
  4590. ### Note: this driver was contributed by users: please contact           ###
  4591. ###       Dave St. Clair (dave@exlog.com) if you have questions.         ###
  4592.  
  4593. epsonc_=gdevepsc.$(OBJ)
  4594. epsonc.dev: $(epsonc_) page.dev
  4595.     $(SETPDEV) epsonc $(epsonc_)
  4596.  
  4597. gdevepsc.$(OBJ): gdevepsc.c $(PDEVH)
  4598.  
  4599. ### ------------- The Epson ESC/P 2 language printer devices ------------- ###
  4600. ### Note: these drivers were contributed by users.                         ###
  4601. ### For questions about the Stylus 800 and AP3250 drivers, please contact  ###
  4602. ###        Richard Brown (rab@tauon.ph.unimelb.edu.au).                    ###
  4603. ### For questions about the Stylus Color drivers, please contact           ###
  4604. ###        Gunther Hess (gunther@elmos.de).                                ###
  4605.  
  4606. ESCP2=gdevescp.$(OBJ)
  4607.  
  4608. gdevescp.$(OBJ): gdevescp.c $(PDEVH)
  4609.  
  4610. ap3250.dev: $(ESCP2) page.dev
  4611.     $(SETPDEV) ap3250 $(ESCP2)
  4612.  
  4613. st800.dev: $(ESCP2) page.dev
  4614.     $(SETPDEV) st800 $(ESCP2)
  4615.  
  4616. stcolor1_=gdevstc.$(OBJ) gdevstc1.$(OBJ) gdevstc2.$(OBJ)
  4617. stcolor2_=gdevstc3.$(OBJ) gdevstc4.$(OBJ)
  4618. stcolor.dev: $(stcolor1_) $(stcolor2_) page.dev
  4619.     $(SETPDEV) stcolor $(stcolor1_)
  4620.     $(ADDMOD) stcolor -obj $(stcolor2_)
  4621.  
  4622. gdevstc.$(OBJ): gdevstc.c gdevstc.h $(PDEVH)
  4623.  
  4624. gdevstc1.$(OBJ): gdevstc1.c gdevstc.h $(PDEVH)
  4625.  
  4626. gdevstc2.$(OBJ): gdevstc2.c gdevstc.h $(PDEVH)
  4627.  
  4628. gdevstc3.$(OBJ): gdevstc3.c gdevstc.h $(PDEVH)
  4629.  
  4630. gdevstc4.$(OBJ): gdevstc4.c gdevstc.h $(PDEVH)
  4631.  
  4632. ### --------------- Ugly/Update -> Unified Printer Driver ---------------- ###
  4633. ### For questions about this driver, please contact:                       ###
  4634. ###        Gunther Hess (gunther@elmos.de)                                 ###
  4635.  
  4636. uniprint_=gdevupd.$(OBJ)
  4637. uniprint.dev: $(uniprint_) page.dev
  4638.     $(SETPDEV) uniprint $(uniprint_)
  4639.  
  4640. gdevupd.$(OBJ): gdevupd.c $(PDEVH) $(gsparam_h)
  4641.  
  4642. ### -------------- cdj850 - HP 850c Driver under development ------------- ###
  4643. ### Since this driver is in the development-phase it is not distributed    ###
  4644. ### with ghostscript, but it is available via anonymous ftp from:          ###
  4645. ###                        ftp://bonk.ethz.ch                              ###
  4646. ### For questions about this driver, please contact:                       ###
  4647. ###       Uli Wortmann (E-Mail address inside the driver-package)          ###
  4648.  
  4649. cdeskjet8_=gdevcd8.$(OBJ) $(HPPCL)
  4650.  
  4651. cdj850.dev: $(cdeskjet8_) page.dev
  4652.     $(SETPDEV) cdj850 $(cdeskjet8_)
  4653.  
  4654. ### ------------ The H-P PaintJet color printer device ----------------- ###
  4655. ### Note: this driver also supports the DEC LJ250 color printer, which   ###
  4656. ###       has a PaintJet-compatible mode, and the PaintJet XL.           ###
  4657. ### If you have questions about the XL, please contact Rob Reiss         ###
  4658. ###       (rob@moray.berkeley.edu).                                      ###
  4659.  
  4660. PJET=gdevpjet.$(OBJ) $(HPPCL)
  4661.  
  4662. gdevpjet.$(OBJ): gdevpjet.c $(PDEVH) $(gdevpcl_h)
  4663.  
  4664. lj250.dev: $(PJET) page.dev
  4665.     $(SETPDEV) lj250 $(PJET)
  4666.  
  4667. paintjet.dev: $(PJET) page.dev
  4668.     $(SETPDEV) paintjet $(PJET)
  4669.  
  4670. pjetxl.dev: $(PJET) page.dev
  4671.     $(SETPDEV) pjetxl $(PJET)
  4672.  
  4673. ### -------------- Imagen ImPress Laser Printer device ----------------- ###
  4674. ### Note: this driver was contributed by a user: please contact          ###
  4675. ###       Alan Millar (AMillar@bolis.sf-bay.org) if you have questions.  ###
  4676. ### Set USE_BYTE_STREAM if using parallel interface;                     ###
  4677. ### Don't set it if using 'ipr' spooler (default).                       ###
  4678. ### You may also add -DA4 if needed for A4 paper.             ###
  4679.  
  4680. imagen_=gdevimgn.$(OBJ)
  4681. imagen.dev: $(imagen_) page.dev
  4682.     $(SETPDEV) imagen $(imagen_)
  4683.  
  4684. gdevimgn.$(OBJ): gdevimgn.c $(PDEVH)
  4685.     $(CCC) gdevimgn.c            # for ipr spooler
  4686. #    $(CCC) -DUSE_BYTE_STREAM gdevimgn.c    # for parallel
  4687.  
  4688. ### ------- The IBM 3852 JetPrinter color inkjet printer device -------- ###
  4689. ### Note: this driver was contributed by users: please contact           ###
  4690. ###       Kevin Gift (kgift@draper.com) if you have questions.           ###
  4691. ### Note that the paper size that can be addressed by the graphics mode  ###
  4692. ###   used in this driver is fixed at 7-1/2 inches wide (the printable   ###
  4693. ###   width of the jetprinter itself.)                                   ###
  4694.  
  4695. jetp3852_=gdev3852.$(OBJ)
  4696. jetp3852.dev: $(jetp3852_) page.dev
  4697.     $(SETPDEV) jetp3852 $(jetp3852_)
  4698.  
  4699. gdev3852.$(OBJ): gdev3852.c $(PDEVH) $(gdevpcl_h)
  4700.  
  4701. ### ---------- The Canon LBP-8II and LIPS III printer devices ---------- ###
  4702. ### Note: these drivers were contributed by users.                       ###
  4703. ### For questions about these drivers, please contact                    ###
  4704. ###       Lauri Paatero, lauri.paatero@paatero.pp.fi                     ###
  4705.  
  4706. lbp8_=gdevlbp8.$(OBJ)
  4707. lbp8.dev: $(lbp8_) page.dev
  4708.     $(SETPDEV) lbp8 $(lbp8_)
  4709.  
  4710. lips3.dev: $(lbp8_) page.dev
  4711.     $(SETPDEV) lips3 $(lbp8_)
  4712.  
  4713. gdevlbp8.$(OBJ): gdevlbp8.c $(PDEVH)
  4714.  
  4715. ### ----------- The DEC LN03/LA50/LA70/LA75 printer devices ------------ ###
  4716. ### Note: this driver was contributed by users: please contact           ###
  4717. ###       Ulrich Mueller (ulm@vsnhd1.cern.ch) if you have questions.     ###
  4718. ### For questions about LA50 and LA75, please contact                    ###
  4719. ###       Ian MacPhedran (macphed@dvinci.USask.CA).                      ###
  4720. ### For questions about the LA70, please contact                         ###
  4721. ###       Bruce Lowekamp (lowekamp@csugrad.cs.vt.edu).                   ###
  4722. ### For questions about the LA75plus, please contact                     ###
  4723. ###       Andre' Beck (Andre_Beck@IRS.Inf.TU-Dresden.de).                ###
  4724.  
  4725. ln03_=gdevln03.$(OBJ)
  4726. ln03.dev: $(ln03_) page.dev
  4727.     $(SETPDEV) ln03 $(ln03_)
  4728.  
  4729. la50.dev: $(ln03_) page.dev
  4730.     $(SETPDEV) la50 $(ln03_)
  4731.  
  4732. la70.dev: $(ln03_) page.dev
  4733.     $(SETPDEV) la70 $(ln03_)
  4734.  
  4735. la75.dev: $(ln03_) page.dev
  4736.     $(SETPDEV) la75 $(ln03_)
  4737.  
  4738. la75plus.dev: $(ln03_) page.dev
  4739.     $(SETPDEV) la75plus $(ln03_)
  4740.  
  4741. gdevln03.$(OBJ): gdevln03.c $(PDEVH)
  4742.  
  4743. # LA70 driver with low-resolution text enhancement.
  4744.  
  4745. la70t_=gdevla7t.$(OBJ)
  4746. la70t.dev: $(la70t_) page.dev
  4747.     $(SETPDEV) la70t $(la70t_)
  4748.  
  4749. gdevla7t.$(OBJ): gdevla7t.c $(PDEVH)
  4750.  
  4751. ### -------------- The Epson LP-8000 laser printer device -------------- ###
  4752. ### Note: this driver was contributed by a user: please contact Oleg     ###
  4753. ###       Oleg Fat'yanov <faty1@rlem.titech.ac.jp> if you have questions.###
  4754.  
  4755. lp8000_=gdevlp8k.$(OBJ)
  4756. lp8000.dev: $(lp8000_) page.dev
  4757.     $(SETPDEV) lp8000 $(lp8000_)
  4758.  
  4759. gdevlp8k.$(OBJ): gdevlp8k.c $(PDEVH)
  4760.  
  4761. ### -------------- The C.Itoh M8510 printer device --------------------- ###
  4762. ### Note: this driver was contributed by a user: please contact Bob      ###
  4763. ###       Smith <bob@snuffy.penfield.ny.us> if you have questions.       ###
  4764.  
  4765. m8510_=gdev8510.$(OBJ)
  4766. m8510.dev: $(m8510_) page.dev
  4767.     $(SETPDEV) m8510 $(m8510_)
  4768.  
  4769. gdev8510.$(OBJ): gdev8510.c $(PDEVH)
  4770.  
  4771. ### -------------- 24pin Dot-matrix printer with 360DPI ---------------- ###
  4772. ### Note: this driver was contributed by users.  Please contact:         ###
  4773. ###    Andreas Schwab (schwab@ls5.informatik.uni-dortmund.de) for        ###
  4774. ###      questions about the NEC P6;                                     ###
  4775. ###    Christian Felsch (felsch@tu-harburg.d400.de) for                  ###
  4776. ###      questions about the Epson LQ850.                                ###
  4777.  
  4778. dm24_=gdevdm24.$(OBJ)
  4779. gdevdm24.$(OBJ): gdevdm24.c $(PDEVH)
  4780.  
  4781. necp6.dev: $(dm24_) page.dev
  4782.     $(SETPDEV) necp6 $(dm24_)
  4783.  
  4784. lq850.dev: $(dm24_) page.dev
  4785.     $(SETPDEV) lq850 $(dm24_)
  4786.  
  4787. ### ----------------- The Okidata MicroLine 182 device ----------------- ###
  4788. ### Note: this driver was contributed by a user: please contact          ###
  4789. ###       Maarten Koning (smeg@bnr.ca) if you have questions.            ###
  4790.  
  4791. oki182_=gdevo182.$(OBJ)
  4792. oki182.dev: $(oki182_) page.dev
  4793.     $(SETPDEV) oki182 $(oki182_)
  4794.  
  4795. gdevo182.$(OBJ): gdevo182.c $(PDEVH)
  4796.  
  4797. ### ------------- The Okidata IBM compatible printer device ------------ ###
  4798. ### Note: this driver was contributed by a user: please contact          ###
  4799. ###       Charles Mack (chasm@netcom.com) if you have questions.         ###
  4800.  
  4801. okiibm_=gdevokii.$(OBJ)
  4802. okiibm.dev: $(okiibm_) page.dev
  4803.     $(SETPDEV) okiibm $(okiibm_)
  4804.  
  4805. gdevokii.$(OBJ): gdevokii.c $(PDEVH)
  4806.  
  4807. ### ------------- The Ricoh 4081 laser printer device ------------------ ###
  4808. ### Note: this driver was contributed by users:                          ###
  4809. ###       please contact kdw@oasis.icl.co.uk if you have questions.      ###
  4810.  
  4811. r4081_=gdev4081.$(OBJ)
  4812. r4081.dev: $(r4081_) page.dev
  4813.     $(SETPDEV) r4081 $(r4081_)
  4814.  
  4815.  
  4816. gdev4081.$(OBJ): gdev4081.c $(PDEVH)
  4817.  
  4818. ### -------------------- Sony NWP533 printer device -------------------- ###
  4819. ### Note: this driver was contributed by a user: please contact Tero     ###
  4820. ###       Kivinen (kivinen@joker.cs.hut.fi) if you have questions.       ###
  4821.  
  4822. nwp533_=gdevn533.$(OBJ)
  4823. nwp533.dev: $(nwp533_) page.dev
  4824.     $(SETPDEV) nwp533 $(nwp533_)
  4825.  
  4826. gdevn533.$(OBJ): gdevn533.c $(PDEVH)
  4827.  
  4828. ### ------------------------- The SPARCprinter ------------------------- ###
  4829. ### Note: this driver was contributed by users: please contact Martin    ###
  4830. ###       Schulte (schulte@thp.uni-koeln.de) if you have questions.      ###
  4831. ###       He would also like to hear from anyone using the driver.       ###
  4832. ### Please consult the source code for additional documentation.         ###
  4833.  
  4834. sparc_=gdevsppr.$(OBJ)
  4835. sparc.dev: $(sparc_) page.dev
  4836.     $(SETPDEV) sparc $(sparc_)
  4837.  
  4838. gdevsppr.$(OBJ): gdevsppr.c $(PDEVH)
  4839.  
  4840. ### ----------------- The StarJet SJ48 device -------------------------- ###
  4841. ### Note: this driver was contributed by a user: if you have questions,  ###
  4842. ###                          .                                          ###
  4843. ###       please contact Mats Akerblom (f86ma@dd.chalmers.se).           ###
  4844.  
  4845. sj48_=gdevsj48.$(OBJ)
  4846. sj48.dev: $(sj48_) page.dev
  4847.     $(SETPDEV) sj48 $(sj48_)
  4848.  
  4849. gdevsj48.$(OBJ): gdevsj48.c $(PDEVH)
  4850.  
  4851. ### ----------------- Tektronix 4396d color printer -------------------- ###
  4852. ### Note: this driver was contributed by a user: please contact          ###
  4853. ###       Karl Hakimian (hakimian@haney.eecs.wsu.edu)                    ###
  4854. ###       if you have questions.                                         ###
  4855.  
  4856. t4693d_=gdev4693.$(OBJ)
  4857. t4693d2.dev: $(t4693d_) page.dev
  4858.     $(SETPDEV) t4693d2 $(t4693d_)
  4859.  
  4860. t4693d4.dev: $(t4693d_) page.dev
  4861.     $(SETPDEV) t4693d4 $(t4693d_)
  4862.  
  4863. t4693d8.dev: $(t4693d_) page.dev
  4864.     $(SETPDEV) t4693d8 $(t4693d_)
  4865.  
  4866. gdev4693.$(OBJ): gdev4693.c $(PDEVH)
  4867.  
  4868. ### -------------------- Tektronix ink-jet printers -------------------- ###
  4869. ### Note: this driver was contributed by a user: please contact          ###
  4870. ###       Karsten Spang (spang@nbivax.nbi.dk) if you have questions.     ###
  4871.  
  4872. tek4696_=gdevtknk.$(OBJ)
  4873. tek4696.dev: $(tek4696_) page.dev
  4874.     $(SETPDEV) tek4696 $(tek4696_)
  4875.  
  4876. gdevtknk.$(OBJ): gdevtknk.c $(PDEVH) $(malloc__h)
  4877.  
  4878. ### ----------------- The Xerox XES printer device --------------------- ###
  4879. ### Note: this driver was contributed by users: please contact           ###
  4880. ###       Peter Flass (flass@lbdrscs.bitnet) if you have questions.      ###
  4881.  
  4882. xes_=gdevxes.$(OBJ)
  4883. xes.dev: $(xes_) page.dev
  4884.     $(SETPDEV) xes $(xes_)
  4885.  
  4886. gdevxes.$(OBJ): gdevxes.c $(PDEVH)
  4887.  
  4888. ###### ------------------------- Fax devices ------------------------- ######
  4889.  
  4890. ### --------------- Generic PostScript system compatible fax ------------ ###
  4891.  
  4892. # This code doesn't work yet.  Don't even think about using it.
  4893.  
  4894. PSFAX=gdevpfax.$(OBJ)
  4895.  
  4896. psfax_=$(PSFAX)
  4897. psfax.dev: $(psfax_) page.dev
  4898.     $(SETPDEV) psfax $(psfax_)
  4899.     $(ADDMOD) psfax -iodev Fax
  4900.  
  4901. gdevpfax.$(OBJ): gdevpfax.c $(PDEVH) $(gsparam_h) $(gxiodev_h)
  4902.  
  4903. ### ------------------------- The DigiFAX device ------------------------ ###
  4904. ###    This driver outputs images in a format suitable for use with       ###
  4905. ###    DigiBoard, Inc.'s DigiFAX software.  Use -sDEVICE=dfaxhigh for     ###
  4906. ###    high resolution output, -sDEVICE=dfaxlow for normal output.        ###
  4907. ### Note: this driver was contributed by a user: please contact           ###
  4908. ###       Rick Richardson (rick@digibd.com) if you have questions.        ###
  4909.  
  4910. dfax_=gdevdfax.$(OBJ) gdevtfax.$(OBJ)
  4911.  
  4912. dfaxlow.dev: $(dfax_) page.dev
  4913.     $(SETPDEV) dfaxlow $(dfax_)
  4914.     $(ADDMOD) dfaxlow -include cfe
  4915.  
  4916. dfaxhigh.dev: $(dfax_) page.dev
  4917.     $(SETPDEV) dfaxhigh $(dfax_)
  4918.     $(ADDMOD) dfaxhigh -include cfe
  4919.  
  4920. gdevdfax.$(OBJ): gdevdfax.c $(PDEVH) $(scfx_h) $(strimpl_h)
  4921.  
  4922. ### --------------See under TIFF below for fax-format TIFF -------------- ###
  4923.  
  4924. ###### ------------------- High-level file formats ------------------- ######
  4925.  
  4926. # Support for PostScript and PDF
  4927.  
  4928. gdevpsdf_h=gdevpsdf.h $(gdevvec_h) $(strimpl_h)
  4929. gdevpstr_h=gdevpstr.h
  4930.  
  4931. gdevpsdf.$(OBJ): gdevpsdf.c $(stdio__h) $(string__h)\
  4932.  $(gserror_h) $(gserrors_h) $(gsmemory_h) $(gsparam_h) $(gstypes_h)\
  4933.  $(gxdevice_h)\
  4934.  $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)\
  4935.  $(gdevpsdf_h) $(gdevpstr_h)
  4936.  
  4937. gdevpstr.$(OBJ): gdevpstr.c $(math__h) $(stdio__h) $(string__h)\
  4938.  $(gdevpstr_h) $(stream_h)
  4939.  
  4940. # PostScript and EPS writers
  4941.  
  4942. pswrite1_=gdevps.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4943. pswrite2_=scantab.$(OBJ) sfilter2.$(OBJ)
  4944. pswrite_=$(pswrite1_) $(pswrite2_)
  4945. epswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4946.     $(SETDEV) epswrite $(pswrite1_)
  4947.     $(ADDMOD) epswrite $(pswrite2_)
  4948.     $(ADDMOD) epswrite -include vector
  4949.  
  4950. pswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4951.     $(SETDEV) pswrite $(pswrite1_)
  4952.     $(ADDMOD) pswrite $(pswrite2_)
  4953.     $(ADDMOD) pswrite -include vector
  4954.  
  4955. gdevps.$(OBJ): gdevps.c $(GDEV) $(math__h) $(time__h)\
  4956.  $(gscdefs_h) $(gscspace_h) $(gsparam_h) $(gsiparam_h) $(gsmatrix_h)\
  4957.  $(gxdcolor_h)\
  4958.  $(sa85x_h) $(strimpl_h)\
  4959.  $(gdevpsdf_h) $(gdevpstr_h)
  4960.  
  4961. # PDF writer
  4962. # Note that gs_pdfwr.ps will only actually be loaded if the configuration
  4963. # includes a PostScript interpreter.
  4964.  
  4965. pdfwrite1_=gdevpdf.$(OBJ) gdevpdfi.$(OBJ) gdevpdfm.$(OBJ)
  4966. pdfwrite2_=gdevpdfp.$(OBJ) gdevpdft.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4967. pdfwrite3_=gsflip.$(OBJ) scantab.$(OBJ) sfilter2.$(OBJ) sstring.$(OBJ)
  4968. pdfwrite_=$(pdfwrite1_) $(pdfwrite2_) $(pdfwrite3_)
  4969. pdfwrite.dev: $(ECHOGS_XE) $(pdfwrite_) \
  4970.   cmyklib.dev cfe.dev dcte.dev lzwe.dev rle.dev vector.dev
  4971.     $(SETDEV) pdfwrite $(pdfwrite1_)
  4972.     $(ADDMOD) pdfwrite $(pdfwrite2_)
  4973.     $(ADDMOD) pdfwrite $(pdfwrite3_)
  4974.     $(ADDMOD) pdfwrite -ps gs_pdfwr
  4975.     $(ADDMOD) pdfwrite -include cmyklib cfe dcte lzwe rle vector
  4976.  
  4977. gdevpdfx_h=gdevpdfx.h $(gsparam_h) $(gxdevice_h) $(gxline_h) $(stream_h)\
  4978.  $(gdevpsdf_h) $(gdevpstr_h)
  4979.  
  4980. gdevpdf.$(OBJ): gdevpdf.c $(math__h) $(string__h) $(time__h) $(gp_h) \
  4981.   $(gdevpdfx_h) $(gscdefs_h) $(gserrors_h) \
  4982.   $(gx_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gxpaint_h) \
  4983.   $(gzcpath_h) $(gzpath_h) $(scfx_h) $(strimpl_h)
  4984.  
  4985. gdevpdfi.$(OBJ): gdevpdfi.c $(memory__h) $(gx_h) \
  4986.   $(gdevpdfx_h) $(gserrors_h) $(gsflip_h) $(gxcspace_h) $(gxistate_h) \
  4987.   $(sa85x_h) $(scfx_h) $(srlx_h) $(strimpl_h)
  4988.  
  4989. gdevpdfm.$(OBJ): gdevpdfm.c $(memory__h) $(string__h) $(gx_h) \
  4990.   $(gdevpdfx_h) $(gserrors_h) $(gsutil_h) $(scanchar_h)
  4991.  
  4992. gdevpdfp.$(OBJ): gdevpdfp.c $(gx_h)\
  4993.  $(gdevpdfx_h) $(gserrors_h)
  4994.  
  4995. gdevpdft.$(OBJ): gdevpdft.c $(math__h) $(string__h) $(gx_h)\
  4996.  $(gdevpdfx_h) $(gserrors_h) $(gsutil_h)\
  4997.  $(sstring_h) $(strimpl_h)
  4998.  
  4999. # High-level PCL XL writer
  5000.  
  5001. pxl_=gdevpx.$(OBJ)
  5002. pxlmono.dev: $(pxl_) $(GDEV) vector.dev
  5003.     $(SETDEV) pxlmono $(pxl_)
  5004.     $(ADDMOD) pxlmono -include vector
  5005.  
  5006. pxlcolor.dev: $(pxl_) $(GDEV) vector.dev
  5007.     $(SETDEV) pxlcolor $(pxl_)
  5008.     $(ADDMOD) pxlcolor -include vector
  5009.  
  5010. gdevpx.$(OBJ): gdevpx.c $(math__h) $(memory__h) $(string__h)\
  5011.  $(gx_h) $(gsccolor_h) $(gsdcolor_h) $(gserrors_h)\
  5012.  $(gxcspace_h) $(gxdevice_h) $(gxpath_h)\
  5013.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h) $(gdevvec_h)\
  5014.  $(srlx_h) $(strimpl_h)
  5015.  
  5016. ###### --------------------- Raster file formats --------------------- ######
  5017.  
  5018. ### --------------------- The "plain bits" devices ---------------------- ###
  5019.  
  5020. bit_=gdevbit.$(OBJ)
  5021.  
  5022. bit.dev: $(bit_) page.dev
  5023.     $(SETPDEV) bit $(bit_)
  5024.  
  5025. bitrgb.dev: $(bit_) page.dev
  5026.     $(SETPDEV) bitrgb $(bit_)
  5027.  
  5028. bitcmyk.dev: $(bit_) page.dev
  5029.     $(SETPDEV) bitcmyk $(bit_)
  5030.  
  5031. gdevbit.$(OBJ): gdevbit.c $(PDEVH) $(gsparam_h) $(gxlum_h)
  5032.  
  5033. ### ------------------------- .BMP file formats ------------------------- ###
  5034.  
  5035. bmp_=gdevbmp.$(OBJ) gdevpccm.$(OBJ)
  5036.  
  5037. gdevbmp.$(OBJ): gdevbmp.c $(PDEVH) $(gdevpccm_h)
  5038.  
  5039. bmpmono.dev: $(bmp_) page.dev
  5040.     $(SETPDEV) bmpmono $(bmp_)
  5041.  
  5042. bmp16.dev: $(bmp_) page.dev
  5043.     $(SETPDEV) bmp16 $(bmp_)
  5044.  
  5045. bmp256.dev: $(bmp_) page.dev
  5046.     $(SETPDEV) bmp256 $(bmp_)
  5047.  
  5048. bmp16m.dev: $(bmp_) page.dev
  5049.     $(SETPDEV) bmp16m $(bmp_)
  5050.  
  5051. ### -------------------------- CGM file format ------------------------- ###
  5052. ### This driver is under development.  Use at your own risk.             ###
  5053. ### The output is very low-level, consisting only of rectangles and      ###
  5054. ### cell arrays.                                                         ###
  5055.  
  5056. cgm_=gdevcgm.$(OBJ) gdevcgml.$(OBJ)
  5057.  
  5058. gdevcgml_h=gdevcgml.h
  5059. gdevcgmx_h=gdevcgmx.h $(gdevcgml_h)
  5060.  
  5061. gdevcgm.$(OBJ): gdevcgm.c $(GDEV) $(memory__h)\
  5062.  $(gsparam_h) $(gdevpccm_h) $(gdevcgml_h)
  5063.  
  5064. gdevcgml.$(OBJ): gdevcgml.c $(memory__h) $(stdio__h)\
  5065.  $(gdevcgmx_h)
  5066.  
  5067. cgmmono.dev: $(cgm_)
  5068.     $(SETDEV) cgmmono $(cgm_)
  5069.  
  5070. cgm8.dev: $(cgm_)
  5071.     $(SETDEV) cgm8 $(cgm_)
  5072.  
  5073. cgm24.dev: $(cgm_)
  5074.     $(SETDEV) cgm24 $(cgm_)
  5075.  
  5076. ### -------------------- The CIF file format for VLSI ------------------ ###
  5077. ### Note: this driver was contributed by a user: please contact          ###
  5078. ###       Frederic Petrot (petrot@masi.ibp.fr) if you have questions.    ###
  5079.  
  5080. cif_=gdevcif.$(OBJ)
  5081. cif.dev: $(cif_) page.dev
  5082.     $(SETPDEV) cif $(cif_)
  5083.  
  5084. gdevcif.$(OBJ): gdevcif.c $(PDEVH)
  5085.  
  5086. ### ------------------------- JPEG file format ------------------------- ###
  5087.  
  5088. jpeg_=gdevjpeg.$(OBJ)
  5089.  
  5090. # RGB output
  5091. jpeg.dev: $(jpeg_) sdcte.dev page.dev
  5092.     $(SETPDEV) jpeg $(jpeg_)
  5093.     $(ADDMOD) jpeg -include sdcte
  5094.  
  5095. # Gray output
  5096. jpeggray.dev: $(jpeg_) sdcte.dev page.dev
  5097.     $(SETPDEV) jpeggray $(jpeg_)
  5098.     $(ADDMOD) jpeggray -include sdcte
  5099.  
  5100. gdevjpeg.$(OBJ): gdevjpeg.c $(stdio__h) $(PDEVH)\
  5101.  $(sdct_h) $(sjpeg_h) $(stream_h) $(strimpl_h) jpeglib.h
  5102.  
  5103. ### ------------------------- MIFF file format ------------------------- ###
  5104. ### Right now we support only 24-bit direct color, but we might add more ###
  5105. ### formats in the future.                                               ###
  5106.  
  5107. miff_=gdevmiff.$(OBJ)
  5108.  
  5109. miff24.dev: $(miff_) page.dev
  5110.     $(SETPDEV) miff24 $(miff_)
  5111.  
  5112. gdevmiff.$(OBJ): gdevmiff.c $(PDEVH)
  5113.  
  5114. ### --------------------------- MGR devices ---------------------------- ###
  5115. ### Note: these drivers were contributed by a user: please contact       ###
  5116. ###       Carsten Emde (carsten@ce.pr.net.ch) if you have questions.     ###
  5117.  
  5118. MGR=gdevmgr.$(OBJ) gdevpccm.$(OBJ)
  5119.  
  5120. gdevmgr.$(OBJ): gdevmgr.c $(PDEVH) $(gdevpccm_h) gdevmgr.h
  5121.  
  5122. mgrmono.dev: $(MGR) page.dev
  5123.     $(SETPDEV) mgrmono $(MGR)
  5124.  
  5125. mgrgray2.dev: $(MGR) page.dev
  5126.     $(SETPDEV) mgrgray2 $(MGR)
  5127.  
  5128. mgrgray4.dev: $(MGR) page.dev
  5129.     $(SETPDEV) mgrgray4 $(MGR)
  5130.  
  5131. mgrgray8.dev: $(MGR) page.dev
  5132.     $(SETPDEV) mgrgray8 $(MGR)
  5133.  
  5134. mgr4.dev: $(MGR) page.dev
  5135.     $(SETPDEV) mgr4 $(MGR)
  5136.  
  5137. mgr8.dev: $(MGR) page.dev
  5138.     $(SETPDEV) mgr8 $(MGR)
  5139.  
  5140. ### ------------------------- PCX file formats ------------------------- ###
  5141.  
  5142. pcx_=gdevpcx.$(OBJ) gdevpccm.$(OBJ)
  5143.  
  5144. gdevpcx.$(OBJ): gdevpcx.c $(PDEVH) $(gdevpccm_h) $(gxlum_h)
  5145.  
  5146. pcxmono.dev: $(pcx_) page.dev
  5147.     $(SETPDEV) pcxmono $(pcx_)
  5148.  
  5149. pcxgray.dev: $(pcx_) page.dev
  5150.     $(SETPDEV) pcxgray $(pcx_)
  5151.  
  5152. pcx16.dev: $(pcx_) page.dev
  5153.     $(SETPDEV) pcx16 $(pcx_)
  5154.  
  5155. pcx256.dev: $(pcx_) page.dev
  5156.     $(SETPDEV) pcx256 $(pcx_)
  5157.  
  5158. pcx24b.dev: $(pcx_) page.dev
  5159.     $(SETPDEV) pcx24b $(pcx_)
  5160.  
  5161. pcxcmyk.dev: $(pcx_) page.dev
  5162.     $(SETPDEV) pcxcmyk $(pcx_)
  5163.  
  5164. # The 2-up PCX device is here only as an example, and for testing.
  5165. pcx2up.dev: $(LIB_MAK) $(ECHOGS_XE) gdevp2up.$(OBJ) page.dev pcx256.dev
  5166.     $(SETPDEV) pcx2up gdevp2up.$(OBJ)
  5167.     $(ADDMOD) pcx2up -include pcx256
  5168.  
  5169. gdevp2up.$(OBJ): gdevp2up.c $(AK)\
  5170.  $(gdevpccm_h) $(gdevprn_h) $(gxclpage_h)
  5171.  
  5172. ### ------------------- Portable Bitmap file formats ------------------- ###
  5173. ### For more information, see the pbm(5), pgm(5), and ppm(5) man pages.  ###
  5174.  
  5175. pxm_=gdevpbm.$(OBJ)
  5176.  
  5177. gdevpbm.$(OBJ): gdevpbm.c $(PDEVH) $(gscdefs_h) $(gxlum_h)
  5178.  
  5179. ### Portable Bitmap (PBM, plain or raw format, magic numbers "P1" or "P4")
  5180.  
  5181. pbm.dev: $(pxm_) page.dev
  5182.     $(SETPDEV) pbm $(pxm_)
  5183.  
  5184. pbmraw.dev: $(pxm_) page.dev
  5185.     $(SETPDEV) pbmraw $(pxm_)
  5186.  
  5187. ### Portable Graymap (PGM, plain or raw format, magic numbers "P2" or "P5")
  5188.  
  5189. pgm.dev: $(pxm_) page.dev
  5190.     $(SETPDEV) pgm $(pxm_)
  5191.  
  5192. pgmraw.dev: $(pxm_) page.dev
  5193.     $(SETPDEV) pgmraw $(pxm_)
  5194.  
  5195. # PGM with automatic optimization to PBM if this is possible.
  5196.  
  5197. pgnm.dev: $(pxm_) page.dev
  5198.     $(SETPDEV) pgnm $(pxm_)
  5199.  
  5200. pgnmraw.dev: $(pxm_) page.dev
  5201.     $(SETPDEV) pgnmraw $(pxm_)
  5202.  
  5203. ### Portable Pixmap (PPM, plain or raw format, magic numbers "P3" or "P6")
  5204.  
  5205. ppm.dev: $(pxm_) page.dev
  5206.     $(SETPDEV) ppm $(pxm_)
  5207.  
  5208. ppmraw.dev: $(pxm_) page.dev
  5209.     $(SETPDEV) ppmraw $(pxm_)
  5210.  
  5211. # PPM with automatic optimization to PGM or PBM if possible.
  5212.  
  5213. pnm.dev: $(pxm_) page.dev
  5214.     $(SETPDEV) pnm $(pxm_)
  5215.  
  5216. pnmraw.dev: $(pxm_) page.dev
  5217.     $(SETPDEV) pnmraw $(pxm_)
  5218.  
  5219. ### Portable inKmap (CMYK internally, converted to PPM=RGB at output time)
  5220.  
  5221. pkm.dev: $(pxm_) page.dev
  5222.     $(SETPDEV) pkm $(pxm_)
  5223.  
  5224. pkmraw.dev: $(pxm_) page.dev
  5225.     $(SETPDEV) pkmraw $(pxm_)
  5226.  
  5227. ### --------------- Portable Network Graphics file format --------------- ###
  5228. ### Requires libpng 0.81 and zlib 0.95 (or more recent versions).         ###
  5229. ### See libpng.mak and zlib.mak for more details.                         ###
  5230.  
  5231. png_=gdevpng.$(OBJ) gdevpccm.$(OBJ)
  5232.  
  5233. gdevpng.$(OBJ): gdevpng.c $(gdevprn_h) $(gdevpccm_h) $(gscdefs_h) $(PSRC)png.h
  5234.     $(CCCP) gdevpng.c
  5235.  
  5236. pngmono.dev: libpng.dev $(png_) page.dev
  5237.     $(SETPDEV) pngmono  $(png_)
  5238.     $(ADDMOD) pngmono  -include libpng
  5239.  
  5240. pnggray.dev: libpng.dev $(png_) page.dev
  5241.     $(SETPDEV) pnggray  $(png_)
  5242.     $(ADDMOD) pnggray  -include libpng
  5243.  
  5244. png16.dev: libpng.dev $(png_) page.dev
  5245.     $(SETPDEV) png16  $(png_)
  5246.     $(ADDMOD) png16  -include libpng
  5247.  
  5248. png256.dev: libpng.dev $(png_) page.dev
  5249.     $(SETPDEV) png256  $(png_)
  5250.     $(ADDMOD) png256  -include libpng
  5251.  
  5252. png16m.dev: libpng.dev $(png_) page.dev
  5253.     $(SETPDEV) png16m  $(png_)
  5254.     $(ADDMOD) png16m  -include libpng
  5255.  
  5256. ### ---------------------- PostScript image format ---------------------- ###
  5257. ### These devices make it possible to print Level 2 files on a Level 1    ###
  5258. ###   printer, by converting them to a bitmap in PostScript format.       ###
  5259.  
  5260. ps_=gdevpsim.$(OBJ)
  5261.  
  5262. gdevpsim.$(OBJ): gdevpsim.c $(PDEVH)
  5263.  
  5264. psmono.dev: $(ps_) page.dev
  5265.     $(SETPDEV) psmono $(ps_)
  5266.  
  5267. psgray.dev: $(ps_) page.dev
  5268.     $(SETPDEV) psgray $(ps_)
  5269.  
  5270. # Someday there will be RGB and CMYK variants....
  5271.  
  5272. ### -------------------------- SGI RGB pixmaps -------------------------- ###
  5273.  
  5274. sgirgb_=gdevsgi.$(OBJ)
  5275.  
  5276. gdevsgi.$(OBJ): gdevsgi.c $(PDEVH) gdevsgi.h
  5277.  
  5278. sgirgb.dev: $(sgirgb_) page.dev
  5279.     $(SETPDEV) sgirgb $(sgirgb_)
  5280.  
  5281. ### -------------------- Plain or TIFF fax encoding --------------------- ###
  5282. ###    Use -sDEVICE=tiffg3 or tiffg4 and                  ###
  5283. ###      -r204x98 for low resolution output, or              ###
  5284. ###      -r204x196 for high resolution output                  ###
  5285. ###    These drivers recognize 3 page sizes: letter, A4, and B4.      ###
  5286.  
  5287. gdevtifs_h=gdevtifs.h
  5288.  
  5289. tfax_=gdevtfax.$(OBJ)
  5290. tfax.dev: $(tfax_) cfe.dev lzwe.dev rle.dev tiffs.dev
  5291.     $(SETMOD) tfax $(tfax_)
  5292.     $(ADDMOD) tfax -include cfe lzwe rle tiffs
  5293.  
  5294. gdevtfax.$(OBJ): gdevtfax.c $(PDEVH)\
  5295.  $(gdevtifs_h) $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)
  5296.  
  5297. ### Plain G3/G4 fax with no header
  5298.  
  5299. faxg3.dev: tfax.dev
  5300.     $(SETDEV) faxg3 -include tfax
  5301.  
  5302. faxg32d.dev: tfax.dev
  5303.     $(SETDEV) faxg32d -include tfax
  5304.  
  5305. faxg4.dev: tfax.dev
  5306.     $(SETDEV) faxg4 -include tfax
  5307.  
  5308. ### ---------------------------- TIFF formats --------------------------- ###
  5309.  
  5310. tiffs_=gdevtifs.$(OBJ)
  5311. tiffs.dev: $(tiffs_) page.dev
  5312.     $(SETMOD) tiffs $(tiffs_)
  5313.     $(ADDMOD) tiffs -include page
  5314.  
  5315. gdevtifs.$(OBJ): gdevtifs.c $(PDEVH) $(stdio__h) $(time__h) \
  5316.  $(gdevtifs_h) $(gscdefs_h) $(gstypes_h)
  5317.  
  5318. # Black & white, G3/G4 fax
  5319.  
  5320. tiffcrle.dev: tfax.dev
  5321.     $(SETDEV) tiffcrle -include tfax
  5322.  
  5323. tiffg3.dev: tfax.dev
  5324.     $(SETDEV) tiffg3 -include tfax
  5325.  
  5326. tiffg32d.dev: tfax.dev
  5327.     $(SETDEV) tiffg32d -include tfax
  5328.  
  5329. tiffg4.dev: tfax.dev
  5330.     $(SETDEV) tiffg4 -include tfax
  5331.  
  5332. # Black & white, LZW compression
  5333.  
  5334. tifflzw.dev: tfax.dev
  5335.     $(SETDEV) tifflzw -include tfax
  5336.  
  5337. # Black & white, PackBits compression
  5338.  
  5339. tiffpack.dev: tfax.dev
  5340.     $(SETDEV) tiffpack -include tfax
  5341.  
  5342. # RGB, no compression
  5343.  
  5344. tiffrgb_=gdevtfnx.$(OBJ)
  5345.  
  5346. tiff12nc.dev: $(tiffrgb_) tiffs.dev
  5347.     $(SETPDEV) tiff12nc $(tiffrgb_)
  5348.     $(ADDMOD) tiff12nc -include tiffs
  5349.  
  5350. tiff24nc.dev: $(tiffrgb_) tiffs.dev
  5351.     $(SETPDEV) tiff24nc $(tiffrgb_)
  5352.     $(ADDMOD) tiff24nc -include tiffs
  5353.  
  5354. gdevtfnx.$(OBJ): gdevtfnx.c $(PDEVH) $(gdevtifs_h)
  5355. #    Copyright (C) 1990, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5356. # This file is part of Aladdin Ghostscript.
  5357. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5358. # or distributor accepts any responsibility for the consequences of using it,
  5359. # or for whether it serves any particular purpose or works at all, unless he
  5360. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5361. # License (the "License") for full details.
  5362. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5363. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5364. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5365. # under certain conditions described in the License.  Among other things, the
  5366. # License requires that the copyright notice and this notice be preserved on
  5367. # all copies.
  5368.  
  5369. # Partial makefile common to all Unix configurations.
  5370.  
  5371. # This is the last part of the makefile for Unix configurations.
  5372. # Since Unix make doesn't have an 'include' facility, we concatenate
  5373. # the various parts of the makefile together by brute force (in tar_cat).
  5374.  
  5375. # Define the name of this makefile.
  5376. UNIXTAIL_MAK=unixtail.mak
  5377.  
  5378. # The following prevents GNU make from constructing argument lists that
  5379. # include all environment variables, which can easily be longer than
  5380. # brain-damaged system V allows.
  5381.  
  5382. .NOEXPORT:
  5383.  
  5384. # -------------------------------- Library -------------------------------- #
  5385.  
  5386. ## The Unix platforms
  5387.  
  5388. # We have to include a test for the existence of sys/time.h,
  5389. # because some System V platforms don't have it.
  5390.  
  5391. # Define pipes as a separable feature.
  5392.  
  5393. pipe_=gdevpipe.$(OBJ)
  5394. pipe.dev: $(UNIXTAIL_MAK) $(ECHOGS_XE) $(pipe_)
  5395.     $(SETMOD) pipe $(pipe_)
  5396.     $(ADDMOD) pipe -iodev pipe
  5397.  
  5398. gdevpipe.$(OBJ): gdevpipe.c $(AK) $(errno__h) $(stdio__h) $(string__h) \
  5399.   $(gserror_h) $(gsmemory_h) $(gstypes_h) $(gxiodev_h) $(stream_h)
  5400.  
  5401. # Unix platforms other than System V, and also System V Release 4
  5402. # (SVR4) platforms.
  5403. unix__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ)
  5404. unix_.dev: $(unix__)
  5405.     $(SETMOD) unix_ $(unix__)
  5406.  
  5407. gp_unix.$(OBJ): gp_unix.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5408.   $(time__h)
  5409.  
  5410. # System V platforms other than SVR4, which lack some system calls,
  5411. # but have pipes.
  5412. sysv__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ) gp_sysv.$(OBJ)
  5413. sysv_.dev: $(sysv__)
  5414.     $(SETMOD) sysv_ $(sysv__)
  5415.  
  5416. gp_sysv.$(OBJ): gp_sysv.c $(stdio__h) $(time__h) $(AK)
  5417.  
  5418. # -------------------------- Auxiliary programs --------------------------- #
  5419.  
  5420. $(ANSI2KNR_XE): ansi2knr.c
  5421.     $(CCA2K) $(O)$(ANSI2KNR_XE) ansi2knr.c
  5422.  
  5423. $(ECHOGS_XE): echogs.c $(AK)
  5424.     $(CCAUX) $(O)$(ECHOGS_XE) echogs.c
  5425.  
  5426. # On the RS/6000 (at least), compiling genarch.c with gcc with -O
  5427. # produces a buggy executable.
  5428. $(GENARCH_XE): genarch.c $(AK) $(stdpre_h)
  5429.     $(CCAUX) $(O)$(GENARCH_XE) genarch.c
  5430.  
  5431. $(GENCONF_XE): genconf.c $(AK) $(stdpre_h)
  5432.     $(CCAUX) $(O)$(GENCONF_XE) genconf.c
  5433.  
  5434. $(GENINIT_XE): geninit.c $(AK) $(stdio__h) $(string__h)
  5435.     $(CCAUX) $(O)$(GENINIT_XE) geninit.c
  5436.  
  5437. # Query the environment to construct gconfig_.h.
  5438. # The "else true; is required because Ultrix's implementation of sh -e
  5439. # terminates execution of a command if any error occurs, even if the command
  5440. # traps the error with ||.
  5441. INCLUDE=/usr/include
  5442. gconfig_.h: $(UNIXTAIL_MAK) $(ECHOGS_XE)
  5443.     ./echogs -w gconfig_.h -x 2f2a -s This file was generated automatically. -s -x 2a2f
  5444.     if ( test -f $(INCLUDE)/dirent.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_DIRENT_H; else true; fi
  5445.     if ( test -f $(INCLUDE)/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_NDIR_H; else true; fi
  5446.     if ( test -f $(INCLUDE)/sys/dir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_DIR_H; else true; fi
  5447.     if ( test -f $(INCLUDE)/sys/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_NDIR_H; else true; fi
  5448.     if ( test -f $(INCLUDE)/sys/time.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIME_H; else true; fi
  5449.     if ( test -f $(INCLUDE)/sys/times.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIMES_H; else true; fi
  5450.  
  5451. # ----------------------------- Main program ------------------------------ #
  5452.  
  5453. ### Library files and archive
  5454.  
  5455. LIB_ARCHIVE_ALL=$(LIB_ALL) $(DEVS_ALL)\
  5456.  gsnogc.$(OBJ) gconfig.$(OBJ) gscdefs.$(OBJ)
  5457.  
  5458. # Build an archive for the library only.
  5459. # This is not used in a standard build.
  5460. GSLIB_A=$(GS)lib.a
  5461. $(GSLIB_A): $(LIB_ARCHIVE_ALL)
  5462.     rm -f $(GSLIB_A)
  5463.     $(AR) $(ARFLAGS) $(GSLIB_A) $(LIB_ARCHIVE_ALL)
  5464.     $(RANLIB) $(GSLIB_A)
  5465.  
  5466. ### Interpreter main program
  5467.  
  5468. INT_ARCHIVE_ALL=imainarg.$(OBJ) imain.$(OBJ) $(INT_ALL) $(DEVS_ALL)\
  5469.  gconfig.$(OBJ) gscdefs.$(OBJ)
  5470. XE_ALL=gs.$(OBJ) $(INT_ARCHIVE_ALL)
  5471.  
  5472. # Build a library archive for the entire interpreter.
  5473. # This is not used in a standard build.
  5474. GS_A=$(GS).a
  5475. $(GS_A): $(INT_ARCHIVE_ALL)
  5476.     rm -f $(GS_A)
  5477.     $(AR) $(ARFLAGS) $(GS_A) $(INT_ARCHIVE_ALL)
  5478.     $(RANLIB) $(GS_A)
  5479.  
  5480. # Here is the final link step.  The stuff with LD_RUN_PATH is for SVR4
  5481. # systems with dynamic library loading; I believe it's harmless elsewhere.
  5482. # The resetting of the environment variables to empty strings is for SCO Unix,
  5483. # which has limited environment space.
  5484. $(GS_XE): ld.tr echogs $(XE_ALL)
  5485.     ./echogs -w ldt.tr -n - $(CCLD) $(LDFLAGS) $(XLIBDIRS) -o $(GS_XE)
  5486.     ./echogs -a ldt.tr -n -s gs.$(OBJ) -s
  5487.     cat ld.tr >>ldt.tr
  5488.     ./echogs -a ldt.tr -s - $(EXTRALIBS) -lm
  5489.     LD_RUN_PATH=$(XLIBDIR); export LD_RUN_PATH; \
  5490.     XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \
  5491.     FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \
  5492.     DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \
  5493.     DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \
  5494.     DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= \
  5495.     $(SH) <ldt.tr
  5496. #    Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5497. # This file is part of Aladdin Ghostscript.
  5498. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5499. # or distributor accepts any responsibility for the consequences of using it,
  5500. # or for whether it serves any particular purpose or works at all, unless he
  5501. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5502. # License (the "License") for full details.
  5503. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5504. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5505. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5506. # under certain conditions described in the License.  Among other things, the
  5507. # License requires that the copyright notice and this notice be preserved on
  5508. # all copies.
  5509.  
  5510. # Partial makefile common to all Unix and Desqview/X configurations.
  5511.  
  5512. # This is the very last part of the makefile for these configurations.
  5513. # Since Unix make doesn't have an 'include' facility, we concatenate
  5514. # the various parts of the makefile together by brute force (in tar_cat).
  5515.  
  5516. # Define a rule for building profiling configurations.
  5517. pg:
  5518.     make GENOPT='' CFLAGS='-pg -O $(GCFLAGS) $(XCFLAGS)' LDFLAGS='$(XLDFLAGS) -pg' XLIBS='Xt SM ICE Xext X11' CCLEAF='$(CCC)'
  5519.  
  5520. # Define a rule for building debugging configurations.
  5521. debug:
  5522.     make GENOPT='-DDEBUG' CFLAGS='-g -O $(GCFLAGS) $(XCFLAGS)'
  5523.  
  5524. # The rule for gconfigv.h is here because it is shared between Unix and
  5525. # DV/X environments.
  5526. gconfigv.h: unix-end.mak $(MAKEFILE) $(ECHOGS_XE)
  5527.     $(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
  5528.     $(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
  5529.     $(EXP)echogs -a gconfigv.h -x 23 define EXTEND_NAMES 0$(EXTEND_NAMES)
  5530.  
  5531. # The following rules are equivalent to what tar_cat does.
  5532. # The rm -f is so that we don't overwrite a file that `make'
  5533. # may currently be reading from.
  5534. GENERIC_MAK_LIST=$(GS_MAK) $(LIB_MAK) $(INT_MAK) $(JPEG_MAK) $(LIBPNG_MAK) $(ZLIB_MAK) $(DEVS_MAK)
  5535. UNIX_MAK_LIST=dvx-gcc.mak unixansi.mak unix-cc.mak unix-gcc.mak
  5536.  
  5537. unix.mak: $(UNIX_MAK_LIST)
  5538.  
  5539. DVX_GCC_MAK=$(VERSION_MAK) dgc-head.mak dvx-head.mak $(GENERIC_MAK_LIST) dvx-tail.mak unix-end.mak
  5540. dvx-gcc.mak: $(DVX_GCC_MAK)
  5541.     rm -f dvx-gcc.mak
  5542.     $(CAT) $(DVX_GCC_MAK) >dvx-gcc.mak
  5543.  
  5544. UNIXANSI_MAK=$(VERSION_MAK) ansihead.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5545. unixansi.mak: $(UNIXANSI_MAK)
  5546.     rm -f unixansi.mak
  5547.     $(CAT) $(UNIXANSI_MAK) >unixansi.mak
  5548.  
  5549. UNIX_CC_MAK=$(VERSION_MAK) cc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5550. unix-cc.mak: $(UNIX_CC_MAK)
  5551.     rm -f unix-cc.mak
  5552.     $(CAT) $(UNIX_CC_MAK) >unix-cc.mak
  5553.  
  5554. UNIX_GCC_MAK=$(VERSION_MAK) gcc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5555. unix-gcc.mak: $(UNIX_GCC_MAK)
  5556.     rm -f unix-gcc.mak
  5557.     $(CAT) $(UNIX_GCC_MAK) >unix-gcc.mak
  5558.  
  5559. # Installation
  5560.  
  5561. TAGS:
  5562.     etags -t *.c *.h
  5563.  
  5564. install: install-exec install-scripts install-data
  5565.  
  5566. # The sh -c in the rules below is required because Ultrix's implementation
  5567. # of sh -e terminates execution of a command if any error occurs, even if
  5568. # the command traps the error with ||.
  5569.  
  5570. install-exec: $(GS)
  5571.     -mkdir $(bindir)
  5572.     $(INSTALL_PROGRAM) $(GS) $(bindir)/$(GS)
  5573.  
  5574. install-scripts: gsnd
  5575.     -mkdir $(scriptdir)
  5576.     sh -c 'for f in gsbj gsdj gsdj500 gslj gslp gsnd bdftops font2c \
  5577. pdf2dsc pdf2ps printafm ps2ascii ps2epsi ps2pdf wftopfa ;\
  5578.     do if ( test -f $$f ); then $(INSTALL_PROGRAM) $$f $(scriptdir)/$$f; fi;\
  5579.     done'
  5580.  
  5581. MAN1_PAGES=gs pdf2dsc pdf2ps ps2ascii ps2epsi ps2pdf
  5582. install-data: gs.1
  5583.     -mkdir $(mandir)
  5584.     -mkdir $(man1dir)
  5585.     sh -c 'for f in $(MAN1_PAGES) ;\
  5586.     do if ( test -f $$f.1 ); then $(INSTALL_DATA) $$f.1 $(man1dir)/$$f.$(man1ext); fi;\
  5587.     done'
  5588.     -mkdir $(datadir)
  5589.     -mkdir $(gsdir)
  5590.     -mkdir $(gsdatadir)
  5591.     sh -c 'for f in Fontmap \
  5592. cbjc600.ppd cbjc800.ppd *.upp \
  5593. gs_init.ps gs_btokn.ps gs_ccfnt.ps gs_cff.ps gs_cidfn.ps gs_cmap.ps \
  5594. gs_diskf.ps gs_dpnxt.ps gs_dps.ps gs_dps1.ps gs_dps2.ps gs_epsf.ps \
  5595. gs_fonts.ps gs_kanji.ps gs_lev2.ps \
  5596. gs_pfile.ps gs_res.ps gs_setpd.ps gs_statd.ps \
  5597. gs_ttf.ps gs_typ42.ps gs_type1.ps \
  5598. gs_dbt_e.ps gs_iso_e.ps gs_ksb_e.ps gs_std_e.ps gs_sym_e.ps \
  5599. acctest.ps align.ps bdftops.ps caption.ps decrypt.ps docie.ps \
  5600. font2c.ps gslp.ps impath.ps landscap.ps level1.ps lines.ps \
  5601. markhint.ps markpath.ps \
  5602. packfile.ps pcharstr.ps pfbtogs.ps ppath.ps prfont.ps printafm.ps \
  5603. ps2ai.ps ps2ascii.ps ps2epsi.ps ps2image.ps \
  5604. quit.ps showchar.ps showpage.ps stcinfo.ps stcolor.ps \
  5605. traceimg.ps traceop.ps type1enc.ps type1ops.ps uninfo.ps unprot.ps \
  5606. viewcmyk.ps viewgif.ps viewjpeg.ps viewpcx.ps viewpbm.ps viewps2a.ps \
  5607. winmaps.ps wftopfa.ps wrfont.ps zeroline.ps \
  5608. gs_l2img.ps gs_pdf.ps \
  5609. pdf2dsc.ps \
  5610. pdf_base.ps pdf_draw.ps pdf_font.ps pdf_main.ps pdf_sec.ps pdf_2ps.ps \
  5611. gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps \
  5612. gs_pdfwr.ps ;\
  5613.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(gsdatadir)/$$f; fi;\
  5614.     done'
  5615.     -mkdir $(docdir)
  5616.     sh -c 'for f in COPYING NEWS PUBLIC README \
  5617. bug-form.txt c-style.txt current.txt devices.txt drivers.txt fonts.txt \
  5618. helpers.txt hershey.txt history1.txt history2.txt history3.txt humor.txt \
  5619. install.txt language.txt lib.txt make.txt new-user.txt \
  5620. ps2epsi.txt ps2pdf.txt psfiles.txt public.txt \
  5621. unix-lpr.txt use.txt xfonts.txt ;\
  5622.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(docdir)/$$f; fi;\
  5623.     done'
  5624.     -mkdir $(exdir)
  5625.     for f in alphabet.ps chess.ps cheq.ps colorcir.ps escher.ps golfer.ps \
  5626. grayalph.ps snowflak.ps tiger.ps waterfal.ps \
  5627. ridt91.eps ;\
  5628.     do $(INSTALL_DATA) $$f $(exdir)/$$f ;\
  5629.     done
  5630.